mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 12:34:18 +00:00
29 lines
684 B
PHP
29 lines
684 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(CountriesTableSeeder::class);
|
|
$this->call(StatesTableSeeder::class);
|
|
$this->call(DistrictsTableSeeder::class);
|
|
$this->call(CurrenciesTableSeeder::class);
|
|
$this->call(SegmentsTableSeeder::class);
|
|
$this->call(SegmentConstantsTableSeeder::class);
|
|
|
|
$this->call(DummyDataSeeder::class);
|
|
|
|
// $this->call(QAQuestionSeeder::class);
|
|
// $this->call(QAAnswerOptionsSeeder::class);
|
|
}
|
|
}
|