123456789101112131415161718192021222324 |
- <?php
- return array(
- /*
- |--------------------------------------------------------------------------
- | Application Routes
- |--------------------------------------------------------------------------
- |
- | Here is the "definition", or the public API, of your application.
- |
- | To add functionality to your application, you add to the array located
- | in this file. It's a breeze. Just tell Laravel the request method and
- | URI a function should respond to.
- |
- */
- 'GET /' => function()
- {
- $this->
- return View::make('home/index');
- },
- );
|