4 |--------------------------------------------------------------------------
5 | Create The Application
6 |--------------------------------------------------------------------------
8 | First we need to get an application instance. This creates an instance
9 | of the application / container and bootstraps the application so it
10 | is ready to receive HTTP / Console requests from the environment.
14 $app = require __DIR__.'/../bootstrap/app.php';
17 |--------------------------------------------------------------------------
19 |--------------------------------------------------------------------------
21 | Once we have the application, we can handle the incoming request
22 | through the kernel, and send the associated response back to
23 | the client's browser allowing them to enjoy the creative
24 | and wonderful application we have prepared for them.