Working on default app structure. Login views.

This commit is contained in:
Taylor Otwell
2014-11-24 11:42:29 -06:00
parent b73e127ed0
commit fa978d0525
25 changed files with 515 additions and 63 deletions

View File

@@ -1,23 +0,0 @@
<?php namespace App\Http\Controllers;
class HomeController extends Controller {
/*
|--------------------------------------------------------------------------
| 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:
|
| $router->get('/', 'HomeController@showWelcome');
|
*/
public function index()
{
return view('hello');
}
}