mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 12:34:01 +00:00
34 lines
741 B
PHP
34 lines
741 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(AdminUsersTableSeeder::class);
|
|
|
|
$this->call(CountriesTableSeeder::class);
|
|
|
|
$this->call(StatesTableSeeder::class);
|
|
$this->call(DistrictsTableSeeder::class);
|
|
|
|
$this->call(CountriesTableSeeder::class);
|
|
$this->call(CurrenciesTableSeeder::class);
|
|
|
|
$this->call(CompaniesTableSeeder::class);
|
|
|
|
$this->call(SegmentsTableSeeder::class);
|
|
|
|
$this->call(SegmentConstantsTableSeeder::class);
|
|
|
|
// $this->call(OrdersTableSeeder::class);
|
|
}
|
|
} |