mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
c3f153fe4b
Update Booking Logic Class Delete Booking Logic Class
35 lines
821 B
PHP
35 lines
821 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::beginTransaction();
|
|
|
|
//General
|
|
$this->call(CountriesTableSeeder::class);
|
|
$this->call(CurrenciesTableSeeder::class);
|
|
$this->call(StatesTableSeeder::class);
|
|
$this->call(DistrictsTableSeeder::class);
|
|
|
|
$this->call(SegmentsTableSeeder::class);
|
|
$this->call(SegmentConstantsTableSeeder::class);
|
|
|
|
$this->call(CompaniesTableSeeder::class);
|
|
$this->call(CompanyBanksTableSeeder::class);
|
|
|
|
// Admin
|
|
$this->call(AdminUserTableSeeder::class);
|
|
$this->call(AdminUserPermissionsTableSeeder::class);
|
|
|
|
DB::commit();
|
|
}
|
|
}
|