Files
nl-admin-api/app/http/controllers/HomeController.php

24 lines
571 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?php
2014-08-11 10:13:20 -05:00
class HomeController extends Controller {
2013-01-11 15:14:07 -06:00
/*
|--------------------------------------------------------------------------
| Default Home Controller
|--------------------------------------------------------------------------
|
| You may wish to use controllers instead of, or in addition to, Closure
| based routes. That's great! Here is an example controller method to
| get you started. To route to this controller, just add the route:
|
2014-08-01 23:51:30 -05:00
| Route::get('/', 'HomeController@index');
2013-01-11 15:14:07 -06:00
|
*/
2014-08-01 23:51:30 -05:00
public function index()
2013-01-11 15:14:07 -06:00
{
return View::make('hello');
}
2014-03-15 10:14:55 +00:00
}