2020-06-08 08:04:45 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Seed the application's database.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
2020-07-29 11:21:51 +00:00
|
|
|
$this->call(PermissionSeeder::class);
|
|
|
|
$this->call(RoleSeeder::class);
|
2020-07-30 10:28:05 +00:00
|
|
|
$this->call(UserSeeder::class);
|
2020-08-05 07:43:39 +00:00
|
|
|
$this->call(ContactSeeder::class);
|
2020-08-06 06:37:16 +00:00
|
|
|
$this->call(LocationSeeder::class);
|
2020-06-08 08:04:45 +00:00
|
|
|
}
|
|
|
|
}
|