unioil-loyalty-app/database/seeds/DatabaseSeeder.php

30 lines
930 B
PHP
Executable File

<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
// $this->call(MemberSeeder::class);
$this->call(AdminUserSeeder::class);
$this->call(CodeGenderSeeder::class);
$this->call(StationTableSeeder::class);
$this->call(CodeCardTypeTableSeeder::class);
$this->call(CodeCivilStatusTableSeeder::class);
$this->call(CodeVehicleOwnTableSeeder::class);
$this->call(SystemPreferenceTableSeeder::class);
// $this->call(TopUpTableSeeder::class);
// $this->call(PaymentsTableSeeder::class);
// $this->call(RatingsTableSeeder::class);
// $this->call(PhotoSliderTableSeeder::class);
// $this->call(MobileAnalyticsTableSeeder::class);
// $this->call(TermsAndPolicyTableSeeder::class);
}
}