laravel user logout code example

Example 1: laravel auth

composer require laravel/ui

php artisan ui vue --auth

npm install && npm run dev

Example 2: laravel check auth

use Illuminate\Support\Facades\Auth;

if (Auth::check()) {
    // The user is logged in...
}

Example 3: laravel authentication

composer require laravel/ui

php artisan ui vue --auth

Example 4: laravel force user logout

if (!Auth::user()->isActive()) {
    Auth::logout();

    return Redirect::home();
}

Example 5: laravel auth

//laravel 8.x
//for bootstrap scafolding
php artisan ui bootstrap --auth

Example 6: laravel 8 make:auth

php artisan migrate
npm install && npm run dev

Tags:

Php Example