Redirect home page to login or dashboard

This commit is contained in:
Ben Ramey
2017-11-04 19:11:38 -06:00
parent 58ffca6947
commit 3813ffc95e
3 changed files with 7 additions and 17 deletions

View File

@@ -1,13 +0,0 @@
@extends('layouts.app')
@section('content')
@auth
<p>Welcome! Go to your dashboard.</p>
@endauth
@guest
<p>Hi. Login</p>
@endguest
@endsection