Files
silent-auction/database/seeds/CarShowCategoryTableSeeder.php
T

13 lines
217 B
PHP

<?php
use Illuminate\Database\Seeder;
use App\Models\CarShowCategory;
class CarShowCategoryTableSeeder extends Seeder
{
public function run()
{
factory(CarShowCategory::class, 10)->create();
}
}