update JSON error message

This commit is contained in:
Mohamed Said 2017-05-25 09:48:50 +02:00
parent 11dfcf6d1a
commit ef5bfb1dae
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public function render($request, Exception $exception)
protected function unauthenticated($request, AuthenticationException $exception)
{
return $request->expectsJson()
? response()->json(['error' => 'Unauthenticated.'], 401)
? response()->json(['message' => 'Unauthenticated.'], 401)
: redirect()->guest(route('login'));
}
}