Browse Source

Merge pull request #4350 from Te7a-Houdini/AddAuthDirective

Add auth directive
Taylor Otwell 7 years ago
parent
commit
8a50ccb617
1 changed files with 2 additions and 2 deletions
  1. 2 2
      resources/views/welcome.blade.php

+ 2 - 2
resources/views/welcome.blade.php

@@ -68,12 +68,12 @@
         <div class="flex-center position-ref full-height">
             @if (Route::has('login'))
                 <div class="top-right links">
-                    @if (Auth::check())
+                    @auth
                         <a href="{{ url('/home') }}">Home</a>
                     @else
                         <a href="{{ route('login') }}">Login</a>
                         <a href="{{ route('register') }}">Register</a>
-                    @endif
+                    @endauth
                 </div>
             @endif