| Server IP : 14.225.204.176 / Your IP : 216.73.216.169 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/home-services/database/seeds/ |
Upload File : |
<?php
/*
* File name: DatabaseSeeder.php
* Last modified: 2021.09.16 at 12:29:38
* Author: SmarterVision - https://codecanyon.net/user/smartervision
* Copyright (c) 2021
*/
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call(UsersTableSeeder::class);
$this->call(RolesTableSeeder::class);
$this->call(PermissionsTableSeeder::class);
$this->call(ModelHasPermissionsTableSeeder::class);
$this->call(ModelHasRolesTableSeeder::class);
$this->call(RoleHasPermissionsTableSeeder::class);
$this->call(CustomFieldsTableSeeder::class);
$this->call(CustomFieldValuesTableSeeder::class);
$this->call(AppSettingsTableSeeder::class);
$this->call(EProviderTypesTableSeeder::class);
$this->call(CategoriesTableSeeder::class);
$this->call(FaqCategoriesTableSeeder::class);
$this->call(BookingStatusesTableSeeder::class);
$this->call(CurrenciesTableSeeder::class);
$this->call(OptionGroupsTableSeeder::class);
$this->call(EProvidersTableSeeder::class);
$this->call(EServicesTableSeeder::class);
$this->call(GalleriesTableSeeder::class);
$this->call(EServiceReviewsTableSeeder::class);
$this->call(PaymentsTableSeeder::class);
$this->call(AddressesTableSeeder::class);
$this->call(BookingsTableSeeder::class);
$this->call(OptionsTableSeeder::class);
$this->call(NotificationsTableSeeder::class);
$this->call(FaqsTableSeeder::class);
$this->call(FavoritesTableSeeder::class);
$this->call(AwardsTableSeeder::class);
$this->call(AvailabilityHoursTableSeeder::class);
$this->call(ExperiencesTableSeeder::class);
$this->call(MediaTableSeeder::class);
$this->call(UploadsTableSeeder::class);
$this->call(EarningsTableSeeder::class);
$this->call(EProvidersPayoutsTableSeeder::class);
$this->call(EProviderAddressesTableSeeder::class);
$this->call(EServiceCategoriesTableSeeder::class);
$this->call(SlidesTableSeeder::class);
$this->call(CustomPagesTableSeeder::class);
$this->call(PaymentMethodsTableSeeder::class);
$this->call(PaymentStatusesTableSeeder::class);
$this->call(TaxesTableSeeder::class);
$this->call(WalletsTableSeeder::class);
$this->call(WalletTransactionsTableSeeder::class);
}
}