“Laravel Guest Blade” Kod odpowiedzi

Laravel Blade @Guest

@auth
    // The user is authenticated...
@endauth
 
@guest
    // The user is not authenticated...
@endguest
  
  @auth('admin')
    // The user is authenticated...
@endauth
 
@guest('admin')
    // The user is not authenticated...
@endguest
Shadow

Laravel Guest Blade

//LARAVEL - BLADE:

@guest
    // The user is not authenticated...
@endguest
  
@auth
    // The user is authenticated...
@endauth
gtamborero

Odpowiedzi podobne do “Laravel Guest Blade”

Pytania podobne do “Laravel Guest Blade”

Więcej pokrewnych odpowiedzi na “Laravel Guest Blade” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu