In the AuthController you should make an adjustment
public function __construct()
{
$this->middleware('guest', ['except' => 'logout']);
}
to
public function __construct()
{
$this->middleware('guest', ['except' => 'getLogout']);
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community