Commit 8bca0206 authored by Your Name's avatar Your Name

..

parent fb5c264e
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
\ No newline at end of file
...@@ -35,7 +35,6 @@ class Authenticate ...@@ -35,7 +35,6 @@ class Authenticate
*/ */
public function handle($request, Closure $next, $guard = null) public function handle($request, Closure $next, $guard = null)
{ {
dd($request->header('Authorization'));
if ($this->auth->guard($guard)->guest()) { if ($this->auth->guard($guard)->guest()) {
return response()->json(['message' => "Unauthorized"], 200); return response()->json(['message' => "Unauthorized"], 200);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment