Factory Laravel Tinker
php artisan tinker
User::factory()->count(5)->create()
Ada
php artisan tinker
User::factory()->count(5)->create()
php artisan tinkerProduct::factory()->count(500)->create()
$users = User::factory()->count(3)->make();