2014-08-20 00:10:30 -05:00
|
|
|
<?php namespace App\Http\Controllers;
|
2013-01-11 15:14:07 -06:00
|
|
|
|
2014-10-15 08:34:33 -05:00
|
|
|
use Illuminate\Routing\Controller;
|
|
|
|
|
|
|
|
|
|
class HomeController extends Controller {
|
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
|
|
|
}
|