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
/
PushNotificationsSeeder.php
/
/
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use App\Models\PushNotification; class PushNotificationsSeeder extends Seeder { public array $pushNotifications = [ [ 'title' => "Chicken Burger 10% Off", 'description' => "Our chicken burger is now available at a special discounted price, with 10% off for the next week!", 'customer_id' => null, 'restaurant_id' => "1", 'type' => "10", ], ]; /** * Run the database seeds. * * @return void */ public function run(){ if (env('DEMO_MODE')) { foreach ($this->pushNotifications as $pushNotification) { PushNotification::create([ 'title' => $pushNotification['title'], 'description' => $pushNotification['description'], 'customer_id' => $pushNotification['customer_id'], 'restaurant_id' => $pushNotification['restaurant_id'], 'type' => $pushNotification['type'], 'creator_type' => "App\Models\User", 'creator_id' => "1", 'editor_type' => "App\Models\User", 'editor_id' => "1", ]); } } } }
/home/users/unlimited/www/foodbank.codeskitter.site/database/seeders/PushNotificationsSeeder.php