for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Livewire\Actions;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Session;
class Logout
{
/**
* Log the current user out of the application.
*/
public function __invoke(): void
Auth::guard('web')->logout();
Session::invalidate();
Session::regenerateToken();
}