����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.191.117.103 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/database/seeders/ |
Upload File : |
<?php namespace Database\Seeders; use App\Models\Language; use App\Models\Meta; use App\Models\NoticeBoard; use App\Models\Setting; use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; use Spatie\Permission\Models\Permission; use Spatie\Permission\Models\Role; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { // $this->call(AppSetting::class); // $this->call(LanguageSeeder::class); // $this->call(MetaSetting::class); // $this->call(SettingSeeder::class); // $this->call(RoleSeeder::class); // $this->call(PermissionSeeder::class); // $this->call(PageSeeder::class); // $this->call(MenuSeeder::class); // $this->call(UserSeeder::class); // $this->call(HomeSeeder::class); // $this->call(BlogCategorySeeder::class); // $this->call(BlogSeeder::class); // $this->call(CategorySeeder::class); // $this->call(SubCategorySeeder::class); // $this->call(CourseLanguageSeeder::class); // $this->call(DifficultyLevelSeeder::class); // $this->call(RankingLevelSeeder::class); // $this->call(TagSeeder::class); // $this->call(CourseSeeder::class); // $this->call(CourseTagSeeder::class); // $this->call(LearnKeyPointSeeder::class); // // $this->call(OrderSeeder::class); // // $this->call(OrderItemSeeder::class); // $this->call(AssignmentSeeder::class); // $this->call(NoticeBoardSeeder::class); // $this->call(InstructorFeatureSeeder::class); // $this->call(InstructorProcedureSeeder::class); // $this->call(FaqQuestionSeeder::class); // $this->call(SupportTicketQuestionSeeder::class); // $this->call(ClientLogoSeeder::class); // $this->call(AboutUsGeneralSeeder::class); // $this->call(TeamMemberSeeder::class); // $this->call(InstructorSupportSeeder::class); // $this->call(OurHistorySeeder::class); // $this->call(CurrencySeeder::class); // $this->call(CountrySeeder::class); // $this->call(StateSeeder::class); // $this->call(CitySeeder::class); // $this->call(BankSeeder::class); // $this->call(SkillSeeder::class); // $this->call(BadgeSeeder::class); // $this->call(PackagePlanSeeder::class); // \App\Models\User::factory(10)->create(); } }