Files
spa-api/application/routes.php

24 lines
547 B
PHP
Raw Normal View History

2011-06-08 23:45:08 -05:00
<?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()
{
2011-07-10 23:16:11 -05:00
$this->
2011-06-08 23:45:08 -05:00
return View::make('home/index');
},
);