31 lines
887 B
PHP
31 lines
887 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
|
|
| and give it the Closure to execute when that URI is requested.
|
|
|
|
|
*/
|
|
|
|
Route::get('/', function()
|
|
{
|
|
return View::make('hello');
|
|
});
|