Edit File: DatabaseSeeder.php
<?php namespace Database\Seeders; 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(UserTableSeeder::class); $this->call(IntroHowWorkTableSeeder::class); // $this->call(IntroSliderTableSeeder::class); $this->call(IntroServiceTableSeeder::class); // $this->call(IntroFqsCategoryTableSeeder::class); // $this->call(IntroFqsTableSeeder::class); // $this->call(IntroPartnerTableSeeder::class); // $this->call(IntroSocialTableSeeder::class); $this->call(SocialTableSeeder::class); $this->call(ContactTableSeeder::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(PaymentBrandTableSeeder::class); $this->call(PackageTableSeeder::class); $this->call(SubscriptionTableSeeder::class); $this->call(InterestTableSeeder::class); $this->call(FriendRequestSeeder::class); } }
Back to File Manager