21 lines
414 B
PHP
21 lines
414 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(PermissionSeeder::class);
|
|
$this->call(RoleSeeder::class);
|
|
$this->call(UserSeeder::class);
|
|
$this->call(ContactSeeder::class);
|
|
$this->call(LocationSeeder::class);
|
|
}
|
|
}
|