mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
66b0c14f5e
# Conflicts: # app/Http/Controllers/BookingController.php # database/seeds/DatabaseSeeder.php # resources/assets/js/pages/admin/booking/verification.vue
26 lines
600 B
PHP
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
|
|
}
|
|
}
|