Edit File: DatabaseSeeder.php
<?php namespace Database\Seeders; use App\Models\Admin; use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { public function run() { $this->call(SettingSeeder::class); $this->call(AdminTableSeeder::class); $this->call(RolesTableSeeder::class); $this->call(PermissionTableSeeder::class); $this->call(CountryTableSeeder::class); $this->call(CityTableSeeder::class); $this->call(NeighborhoodTableSeeder::class); $this->call(UserTableSeeder::class); $this->call(IntroHowWorkTableSeeder::class); $this->call(IntroSliderTableSeeder::class); $this->call(IntroServiceTableSeeder::class); $this->call(IntroFqsCategoryTableSeeder::class); $this->call(IntroFqsTableSeeder::class); $this->call(IntroPartenerTableSeeder::class); $this->call(IntroSocialTableSeeder::class); $this->call(SocialTableSeeder::class); $this->call(ComplaintTableSeeder::class); $this->call(FqsTableSeeder::class); $this->call(IntroTableSeeder::class); $this->call(ImageTableSeeder::class); $this->call(CouponTableSeeder::class); $this->call(SmsTableSeeder::class); $this->call(PagesTableSeeder::class); $this->call(CategoryTableSeeder::class); $this->call(CancelReasonSeeder::class); $this->call(ProviderTableSeeder::class); $this->call(DelegateTableSeeder::class); $this->call(DelegateNeighborhoodTableSeeder::class); $this->call(PaymentBrandTableSeeder::class); $this->call(DayTableSeeder::class); $this->call(ProviderWorkTimeSeeder::class); $this->call(ProductSeeder::class); } }
Back to File Manager