بدلا من إستخدام الجملة الشرطية if-statement للتحقق إذا كان المستخدم مسجل دخول أو لا، يمكن إستخدام @auth مباشرة
@if(auth()->user()) // The user is authenticated. @endif Shorter: @auth // The user is authenticated. @endauth The opposite is @guest directive: @guest // The user is not authenticated. @endguest