mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
24 lines
587 B
PHP
24 lines
587 B
PHP
<?php
|
|
|
|
class HomeController extends BaseController {
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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:
|
|
|
|
|
| Route::get('/', 'HomeController@showWelcome');
|
|
|
|
|
*/
|
|
|
|
public function showWelcome()
|
|
{
|
|
return View::make('hello');
|
|
}
|
|
|
|
}
|