uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
foodbank.codeskitter.site
/
fa8fd
/
..
/
database
/
seeders
/
DatabaseSeeder.php
/
/
<?php namespace Database\Seeders; // use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { ini_set('memory_limit', '1024M'); $this->call(RoleTableSeeder::class); $this->call(UserTableSeeder::class); $this->call(BackendMenuTableSeeder::class); $this->call(PermissionTableSeeder::class); $this->call(RolePermissionTableSeeder::class); $this->call(AdminPermissionTableSeeder::class); $this->call(LanguageSeeder::class); $this->call(FooterMenuSections::class); $this->call(TemplateTableSeeder::class); $this->call(PageTableSeeder::class); $this->call(RestaurantTableSeeder::class); $this->call(CategoryTableSeeder::class); $this->call(BestSellingCategorySeeder::class); $this->call(AddressTableSeeder::class); $this->call(OrderTableSeeder::class); // New $this->call(OrderHistoryTableSeeder::class);// New $this->call(OrderLineItemTableSeeder::class);// New $this->call(InvoicesTableSeeder::class);// New $this->call(LedgerTableSeeder::class);// New $this->call(TransactionsTablesSeeder::class);// New $this->call(CouponSeeder::class); $this->call(RestaurentRattingSeeder::class); $this->call(CuisineTableSeeder::class); $this->call(RestaurantCuisinesTableSeeder::class); $this->call(TablesSeeder::class); $this->call(TimeSlotSeeder::class); $this->call(DiscountsSeeder::class);// New $this->call(CategoryMenuItemsSeeder::class); $this->call(BalancesSeeder::class); $this->call(DeliveryStatusHistoriesSeeder::class); $this->call(DeliveryBoyAccountsSeeder::class); $this->call(ReservationsSeeder::class); $this->call(MenuItemVariationsSeeder::class); $this->call(MenuItemOptionsSeeder::class); $this->call(MenuItemSeeder::class); $this->call(SettingTableSeeder::class); $this->call(WaiterTableSeeder::class); $this->call(BannerTableSeeder::class); $this->call(DineinOrdersTableSeeder::class); $this->call(CollectionTableSeeder::class);// New $this->call(RequestWithdrawSeeder::class);// New $this->call(WithdrawSeeder::class);// New $this->call(BankTableSeeder::class);// New $this->call(PushNotificationsSeeder::class);// New $this->call(ExpenseTableSeeder::class);// New } }
/home/users/unlimited/www/foodbank.codeskitter.site/fa8fd/../database/seeders/DatabaseSeeder.php