File Manager Lite
Dir:
/home/durantab/shikkhalay.com
Upload
[..]
.editorconfig (258 B)
Edit
Rename
Del
.env (1.26 KB)
Edit
Rename
Del
.env.example (1.18 KB)
Edit
Rename
Del
.gitattributes (186 B)
Edit
Rename
Del
.gitignore (306 B)
Edit
Rename
Del
.htaccess (892 B)
Edit
Rename
Del
Modules/
Rename
Del
README.md (80 B)
Edit
Rename
Del
app/
Rename
Del
artisan (1.65 KB)
Edit
Rename
Del
bootstrap/
Rename
Del
changelog.md (1.68 KB)
Edit
Rename
Del
composer.json (3.03 KB)
Edit
Rename
Del
composer.lock (418.16 KB)
Edit
Rename
Del
config/
Rename
Del
database/
Rename
Del
index.php (1.66 KB)
Edit
Rename
Del
lang/
Rename
Del
modules_statuses.json (823 B)
Edit
Rename
Del
package-lock.json (86.88 KB)
Edit
Rename
Del
package.json (481 B)
Edit
Rename
Del
phpunit.xml (1.06 KB)
Edit
Rename
Del
postcss.config.js (93 B)
Edit
Rename
Del
public/
Rename
Del
resources/
Rename
Del
routes/
Rename
Del
server.php (541 B)
Edit
Rename
Del
storage/
Rename
Del
tailwind.config.js (541 B)
Edit
Rename
Del
tests/
Rename
Del
vendor/
Rename
Del
version.json (26 B)
Edit
Rename
Del
vite-module-loader.js (1.36 KB)
Edit
Rename
Del
vite.config.js (310 B)
Edit
Rename
Del
Edit: index.php
<?php use Illuminate\Contracts\Http\Kernel; use Illuminate\Http\Request; define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Check If The Application Is Under Maintenance |-------------------------------------------------------------------------- | | If the application is in maintenance / demo mode via the "down" command | we will load this file so that any pre-rendered content can be shown | instead of starting the framework, which could cause an exception. | */ if (file_exists($maintenance = __DIR__.'/storage/framework/maintenance.php')) { require $maintenance; } /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ require __DIR__.'/vendor/autoload.php'; /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ $app = require_once __DIR__.'/bootstrap/app.php'; $kernel = $app->make(Kernel::class); $response = $kernel->handle( $request = Request::capture() )->send(); $kernel->terminate($request, $response);
Simpan