@guest
// Show content if unauthenticated
@endguest
@auth
// The data only available for auth user
@endauth
{{ auth()->user()->email }}
//Typical way:
@if(auth()->user())
// The user is authenticated.
@endif
//Shorter:
@auth
// The user is authenticated.
@endauth