dyjh 6 년 전
부모
커밋
e550383346
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      app/Http/Middleware/AuthenticateApi.php

+ 1 - 0
app/Http/Middleware/AuthenticateApi.php

xqd
@@ -17,6 +17,7 @@ class AuthenticateApi
     public function handle($request, Closure $next)
     {
         $userAuth = Auth('api')->user();
+        dd($userAuth);
         if (!$userAuth) {
             Response::json([
                 'status' => 1000,