Lae/public/index.php

29 lines
897 B
PHP
Raw Normal View History

2022-08-12 07:56:56 +00:00
<?php
/*
|--------------------------------------------------------------------------
2022-09-08 16:12:02 +00:00
| Create The Application
2022-08-12 07:56:56 +00:00
|--------------------------------------------------------------------------
|
2022-09-08 16:12:02 +00:00
| First we need to get an application instance. This creates an instance
| of the application / container and bootstraps the application so it
| is ready to receive HTTP / Console requests from the environment.
2022-08-12 07:56:56 +00:00
|
*/
2022-09-08 16:12:02 +00:00
$app = require __DIR__.'/../bootstrap/app.php';
2022-08-12 07:56:56 +00:00
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
2022-09-08 16:12:02 +00:00
| 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.
2022-08-12 07:56:56 +00:00
|
*/
2022-09-08 16:12:02 +00:00
$app->run();