mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 12:24:09 +00:00
27 lines
640 B
PHP
27 lines
640 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(UsersTableSeeder::class);
|
|
$this->call(RolesAndPermissionsSeeder::class);
|
|
$this->call(UserRoleSeeder::class);
|
|
$this->call(RateTableSeeder::class);
|
|
$this->call(BookTableSeeder::class);
|
|
$this->call(SettingCreditSeeder::class);
|
|
<<<<<<< HEAD
|
|
=======
|
|
$this->call(SuppliersTableSeeder::class);
|
|
>>>>>>> 722dbacd00523cf1ab207f77a3538f31199de32f
|
|
}
|
|
}
|