From e32ab70abd6c6a3f711eb6bcae7d8bd63b9e08ae Mon Sep 17 00:00:00 2001 From: Admin Date: Tue, 11 Aug 2026 06:20:02 +0000 Subject: [PATCH] Add core Laravel files and Docker config --- public/index.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 public/index.php diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..26daf2f --- /dev/null +++ b/public/index.php @@ -0,0 +1,17 @@ +make(Illuminate\Contracts\Http\Kernel::class); + +$response = $kernel->handle( + $request = Request::capture() +)->send(); + +$kernel->terminate($request, $response); \ No newline at end of file