123456789101112131415161718192021222324252627 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | Require The Filters File
- |--------------------------------------------------------------------------
- |
- | Next we will load the filters file for the application. This gives us
- | a nice separate location to store our route and application filter
- | definitions instead of putting them all in the main routes file.
- |
- */
- require __DIR__.'/filters.php';
- /*
- |--------------------------------------------------------------------------
- | Application Routes
- |--------------------------------------------------------------------------
- |
- | Here is where you can register all of the routes for an application.
- | It's a breeze. Simply tell Laravel the URIs it should respond to
- | then declare the method to execute when that URI is requested.
- |
- */
- Route::get('/', 'HomeController@index');
|