2011-06-08 23:45:08 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Application Routes
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
2011-07-11 13:02:07 -07:00
|
|
|
| Here is the public API of your application. To add functionality to your
|
2011-07-11 13:03:09 -07:00
|
|
|
| application, you just add to the array located in this file.
|
2011-06-08 23:45:08 -05:00
|
|
|
|
|
2011-07-11 13:03:09 -07:00
|
|
|
| It's a breeze. Simply tell Laravel the request URIs it should respond to.
|
2011-06-08 23:45:08 -05:00
|
|
|
|
|
2011-07-19 11:02:02 -07:00
|
|
|
| Need more breathing room? Organize your routes in their own directory.
|
|
|
|
|
| Here's how: http://laravel.com/docs/start/routes#organize
|
2011-07-19 10:34:24 -07:00
|
|
|
|
|
2011-06-08 23:45:08 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'GET /' => function()
|
|
|
|
|
{
|
|
|
|
|
return View::make('home/index');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
);
|