Tweaking setup.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
APP_ENV=local
|
||||
APP_DEBUG=true
|
||||
APP_KEY=SomeRandomString
|
||||
DB_USERNAME=homestead
|
||||
DB_PASSWORD=homestead
|
||||
|
||||
@@ -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',
|
||||
'password' => 'Auth\PasswordController',
|
||||
]);
|
||||
|
||||
@@ -13,7 +13,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'debug' => getenv('APP_DEBUG') ?: false,
|
||||
'debug' => (bool) getenv('APP_DEBUG') ?: false,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@extends('layouts.app')
|
||||
@extends('app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@extends('layouts.app')
|
||||
@extends('app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@extends('layouts.app')
|
||||
@extends('app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@extends('layouts.app')
|
||||
@extends('app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@extends('layouts.app')
|
||||
@extends('app')
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@extends('layouts.app')
|
||||
@extends('app')
|
||||
|
||||
@section('content')
|
||||
<div id="welcome">
|
||||
|
||||
Reference in New Issue
Block a user