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
/
dealnest.codeskitter.site
/
database
/
seeders
/
DatabaseSeeder.php
/
/
<?php namespace Database\Seeders; // use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\File; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { // Duplicate the file $sourceFile = resource_path('lang/en.json'); $destinationFile = resource_path('lang/en-new.json'); File::copy($sourceFile, $destinationFile); $sourceFile = public_path('languages/en.json'); $destinationFile = public_path('languages/en-new.json'); File::copy($sourceFile, $destinationFile); $sourceFile = public_path('web_languages/en.json'); $destinationFile = public_path('web_languages/en-new.json'); File::copy($sourceFile, $destinationFile); DB::table('languages')->insert( [ 'name' => 'English', 'code' => 'en-new', 'file_name' => 'en-new.json', 'status' => '1', ], ); DB::table('settings')->insert( [ [ 'type' => 'company_name', 'data' => 'eBroker' ], [ 'type' => 'currency_symbol', 'data' => '$' ], [ 'type' => 'ios_version', 'data' => '1.0.0' ], [ 'type' => 'default_language', 'data' => 'en-new' ], [ 'type' => 'force_update', 'data' => '0' ], [ 'type' => 'android_version', 'data' => '1.0.0' ], [ 'type' => 'number_with_suffix', 'data' => '0' ], [ 'type' => 'maintenance_mode', 'data' => 0, ], [ 'type' => 'privacy_policy', 'data' => '', ], [ 'type' => 'terms_conditions', 'data' => '', ], [ 'type' => 'company_tel1', 'data' => '', ], [ 'type' => 'company_tel2', 'data' => '', ], [ 'type' => 'razorpay_gateway', 'data' => '0', ], [ 'type' => 'paystack_gateway', 'data' => '0', ], [ 'type' => 'paypal_gateway', 'data' => '0', ], [ 'type' => 'system_version', 'data' => '1.2.3', ], [ 'type' => 'company_logo', 'data' => 'logo.png', ], [ 'type' => 'web_logo', 'data' => 'web_logo.png', ], [ 'type' => 'favicon_icon', 'data' => 'favicon.png', ], [ 'type' => 'web_footer_logo', 'data' => 'Logo_white.svg', ], [ 'type' => 'web_placeholder_logo', 'data' => 'placeholder.svg', ], [ 'type' => 'app_home_screen', 'data' => 'homeLogo.png', ], [ 'type' => 'placeholder_logo', 'data' => 'placeholder.png', ], [ 'type' => 'system_color', 'data' => '#087c7c', ], ] ); } }
/home/users/unlimited/www/dealnest.codeskitter.site/database/seeders/DatabaseSeeder.php