29 lines
512 B
PHP
29 lines
512 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
use Illuminate\Support\Facades\Session;
|
|
|
|
class UserLogoutController extends Controller
|
|
{
|
|
protected $auth;
|
|
|
|
public function __construct(Guard $auth)
|
|
{
|
|
$this->auth = $auth;
|
|
}
|
|
|
|
/**
|
|
* Log a user out and redirect them
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function doLogout()
|
|
{
|
|
$this->auth->logout();
|
|
Session::flush();
|
|
return redirect()->to('/?logged_out=yup');
|
|
}
|
|
}
|