Este repositorio ha sido archivado en 2025-08-22. Puedes ver archivos y clonarlo, pero no puedes hacer push o abrir incidencias o pull request.
Files
dumbo/app/controllers/HomeController.php
2013-09-07 02:26:24 +02:00

23 líneas
586 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');
}
}