56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\School;
|
|
use App\Models\Student;
|
|
use App\Models\User;
|
|
use Faker\Factory;
|
|
use Illuminate\Console\Command;
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*/
|
|
class fictionalize extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'audition:fictionalize';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Command description';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle()
|
|
{
|
|
$faker = Factory::create();
|
|
foreach (Student::all() as $student) {
|
|
$student->first_name = $faker->firstName();
|
|
$student->last_name = $faker->lastName();
|
|
$student->save();
|
|
}
|
|
|
|
foreach (School::all() as $school) {
|
|
$school->name = $faker->city().' High School';
|
|
$school->save();
|
|
}
|
|
|
|
foreach (User::where('email', '!=', 'matt@mattyoung.us')->get() as $user) {
|
|
$user->email = $faker->email();
|
|
$user->first_name = $faker->firstName();
|
|
$user->last_name = $faker->lastName();
|
|
$user->cell_phone = $faker->phoneNumber();
|
|
$user->save();
|
|
}
|
|
}
|
|
}
|