laravel check is logged in code example
Example 1: check if logged laravel
use Illuminate\Support\Facades\Auth;
if (Auth::check()) {
// The user is logged in...
}
Example 2: is users logged in laravel blade
@auth
// user logged in
@else
// not logged in
@endauth