Files
exchange/database/seeds/DatabaseSeeder.php
T
Jack Goh 66b0c14f5e Merge branch 'feature/admin-home-frontend' of gitlab.com:CIEFWorldwideSdnBhd/exchange into feature/admin-home-frontend
# Conflicts:
#	app/Http/Controllers/BookingController.php
#	database/seeds/DatabaseSeeder.php
#	resources/assets/js/pages/admin/booking/verification.vue
2018-06-26 14:43:53 +08:00

26 lines
600 B
PHP

<?php
use Illuminate\Database\Seeder;
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);
<<<<<<< HEAD
$this->call(SettingCreditSeeder::class);
=======
$this->call(CreditTableSeeder::class);
>>>>>>> 89f5e34aa8019e334abed3cbf861c239758682ac
}
}