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
/
database
/
seeders
/
.
/
MenuItemVariationsSeeder.php
/
/
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use App\Models\MenuItemVariation; class MenuItemVariationsSeeder extends Seeder { public array $menuItemVariations = [ [ "menu_item_id" => 1, "restaurant_id" => 2, "name" => "Pepsi Cherry Pepsi®", "price" => "6.50", "discount_price" => "0.00", ], [ "menu_item_id" => 1, "restaurant_id" => 2, "name" => "Medium Cherry Pepsi®", "price" => "6.50", "discount_price" => "0.00", ], [ "menu_item_id" => 1, "restaurant_id" => 2, "name" => "Pepsi Cherry Pepsi®", "price" => "6.50", "discount_price" => "0.00", ], [ "menu_item_id" => 19, "restaurant_id" => 1, "name" => "Small", "price" => "30.00", "discount_price" => "10.00", ], [ "menu_item_id" => 3, "restaurant_id" => 2, "name" => "Half", "price" => "5.20", "discount_price" => "0.00", ], [ "menu_item_id" => 3, "restaurant_id" => 2, "name" => "Medium", "price" => "6.20", "discount_price" => "0.00", ], [ "menu_item_id" => 3, "restaurant_id" => 2, "name" => "Full", "price" => "8.20", "discount_price" => "0.00", ], [ "menu_item_id" => 23, "restaurant_id" => 3, "name" => "Short Pumpkin Spice Latte", "price" => "6.50", "discount_price" => "0.00", ], [ "menu_item_id" => 23, "restaurant_id" => 3, "name" => "Tall Pumpkin Spice Latte", "price" => "6.75", "discount_price" => "0.00", ], [ "menu_item_id" => 23, "restaurant_id" => 3, "name" => "Grande Pumpkin Spice Latte", "price" => "7.50", "discount_price" => "0.00", ], [ "menu_item_id" => 24, "restaurant_id" => 3, "name" => "Short Caffè Americano", "price" => "5.50", "discount_price" => "0.00", ], [ "menu_item_id" => 24, "restaurant_id" => 3, "name" => "Tall Caffè Americano", "price" => "5.50", "discount_price" => "0.00", ], [ "menu_item_id" => 24, "restaurant_id" => 3, "name" => "Grande Caffè Americano", "price" => "6.50", "discount_price" => "0.00", ], [ "menu_item_id" => 56, "restaurant_id" => 1, "name" => "1kg", "price" => "20.00", "discount_price" => "0.00", ], [ "menu_item_id" => 56, "restaurant_id" => 1, "name" => "2kg", "price" => "35.00", "discount_price" => "0.00", ], [ "menu_item_id" => 19, "restaurant_id" => 1, "name" => "Medium", "price" => "40.00", "discount_price" => "0.00", ], [ "menu_item_id" => 25, "restaurant_id" => 1, "name" => "Small", "price" => "35.00", "discount_price" => "2.00", ], [ "menu_item_id" => 25, "restaurant_id" => 1, "name" => "Medium", "price" => "44.00", "discount_price" => "3.00", ], [ "menu_item_id" => 25, "restaurant_id" => 1, "name" => "Large", "price" => "57.00", "discount_price" => "3.00", ], [ "menu_item_id" => 34, "restaurant_id" => 1, "name" => "Small", "price" => "40.00", "discount_price" => "30.00", ], [ "menu_item_id" => 34, "restaurant_id" => 1, "name" => "Medium", "price" => "55.00", "discount_price" => "50.00", ], [ "menu_item_id" => 34, "restaurant_id" => 1, "name" => "Large", "price" => "65.00", "discount_price" => "60.00", ], [ "menu_item_id" => 44, "restaurant_id" => 1, "name" => "Small", "price" => "33.00", "discount_price" => "0.00", ], [ "menu_item_id" => 44, "restaurant_id" => 1, "name" => "Large", "price" => "54.00", "discount_price" => "0.00", ], ]; /** * Run the database seeds. */ public function run(){ if (env('DEMO_MODE')) { foreach ($this->menuItemVariations as $menuItemVariation) { MenuItemVariation::create([ 'menu_item_id' => $menuItemVariation['menu_item_id'], 'restaurant_id' => $menuItemVariation['restaurant_id'], 'name' => $menuItemVariation['name'], 'price' => $menuItemVariation['price'], ]); } } } }
/home/users/unlimited/www/foodbank.codeskitter.site/database/seeders/./MenuItemVariationsSeeder.php