Tweaking setup.

This commit is contained in:
Taylor Otwell
2014-12-04 21:13:15 -06:00
parent 48d1a0ce36
commit 9309699de1
10 changed files with 11 additions and 10 deletions

View File

@@ -1,4 +1,5 @@
APP_ENV=local APP_ENV=local
APP_DEBUG=true
APP_KEY=SomeRandomString APP_KEY=SomeRandomString
DB_USERNAME=homestead DB_USERNAME=homestead
DB_PASSWORD=homestead DB_PASSWORD=homestead

View File

@@ -11,9 +11,9 @@
| |
*/ */
$router->get('/', 'WelcomeController@index'); Route::get('/', 'WelcomeController@index');
$router->get('/home', 'HomeController@index'); Route::get('home', 'HomeController@index');
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@@ -26,7 +26,7 @@ $router->get('/home', 'HomeController@index');
| |
*/ */
$router->controllers([ Route::controllers([
'auth' => 'Auth\AuthController', 'auth' => 'Auth\AuthController',
'password' => 'Auth\PasswordController', 'password' => 'Auth\PasswordController',
]); ]);

View File

@@ -13,7 +13,7 @@ return [
| |
*/ */
'debug' => getenv('APP_DEBUG') ?: false, 'debug' => (bool) getenv('APP_DEBUG') ?: false,
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

View File

@@ -1,4 +1,4 @@
@extends('layouts.app') @extends('app')
@section('content') @section('content')
<div class="container"> <div class="container">

View File

@@ -1,4 +1,4 @@
@extends('layouts.app') @extends('app')
@section('content') @section('content')
<div class="container"> <div class="container">

View File

@@ -1,4 +1,4 @@
@extends('layouts.app') @extends('app')
@section('content') @section('content')
<div class="container"> <div class="container">

View File

@@ -1,4 +1,4 @@
@extends('layouts.app') @extends('app')
@section('content') @section('content')
<div class="container"> <div class="container">

View File

@@ -1,4 +1,4 @@
@extends('layouts.app') @extends('app')
@section('content') @section('content')
<div class="row"> <div class="row">

View File

@@ -1,4 +1,4 @@
@extends('layouts.app') @extends('app')
@section('content') @section('content')
<div id="welcome"> <div id="welcome">