Add seeders and factories for all models
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use App\Models\CarShowCategory;
|
||||
|
||||
class CarShowCategoryTableSeeder extends Seeder
|
||||
{
|
||||
public function run()
|
||||
{
|
||||
factory(CarShowCategory::class, 10)->create();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user