first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder {
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*/
|
||||
public function run(): void {
|
||||
$this->call([
|
||||
AdminSeeder::class,
|
||||
SystemSeeder::class,
|
||||
CitySeeder::class
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user