Inheritance: implements Domain\Auth\Contracts\AuthService
 public function logout()
 {
     if ($this->auth->logout()) {
         return response(['logout' => true]);
     }
     return response(['logout' => false]);
 }