상속: implements Domain\Auth\Contracts\AuthService
예제 #1
0
 public function logout()
 {
     if ($this->auth->logout()) {
         return response(['logout' => true]);
     }
     return response(['logout' => false]);
 }