28 lines
866 B
PHP
28 lines
866 B
PHP
<?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');
|