Files
nl-jqrl-api/app/Http/Controllers/HomeController.php

25 lines
538 B
PHP
Raw Normal View History

2014-08-20 00:10:30 -05:00
<?php namespace App\Http\Controllers;
2013-01-11 15:14:07 -06:00
2014-10-05 23:43:21 -05:00
class HomeController {
2013-01-11 15:14:07 -06:00
/*
|--------------------------------------------------------------------------
2014-10-14 20:07:12 -05:00
| Home Controller
2013-01-11 15:14:07 -06:00
|--------------------------------------------------------------------------
|
2014-10-14 20:07:12 -05:00
| Controller methods are called when a request enters the application
| with their assigned URI. The URI a method responds to may be set
| via simple annotations. Here is an example to get you started!
2013-01-11 15:14:07 -06:00
|
*/
2014-10-03 21:30:51 -05:00
/**
2014-10-14 20:07:12 -05:00
* @Get("/")
2014-10-03 21:30:51 -05:00
*/
2014-08-01 23:51:30 -05:00
public function index()
2013-01-11 15:14:07 -06:00
{
2014-08-20 00:10:30 -05:00
return view('hello');
2013-01-11 15:14:07 -06:00
}
2014-03-15 10:14:55 +00:00
}