diff --git a/public/index.php b/public/index.php index ee8f07e..1d69f3a 100644 --- a/public/index.php +++ b/public/index.php @@ -1,20 +1,55 @@ handleRequest(Request::capture()); +$kernel = $app->make(Kernel::class); + +$response = $kernel->handle( + $request = Request::capture() +)->send(); + +$kernel->terminate($request, $response);