Fix auth header check

This commit is contained in:
Nabeel Shahzad 2017-12-30 12:40:36 -06:00
parent 6a4e89fc40
commit c4573b02a8

View File

@ -6,6 +6,7 @@
namespace App\Http\Middleware;
use Auth;
use Log;
use Closure;
use App\Models\User;
@ -21,7 +22,8 @@ class ApiAuth
public function handle($request, Closure $next)
{
// Check if Authorization header is in place
if(!$request->header('Authorization')) {
$auth = $request->header('Authorization', null);
if(empty($auth)) {
return $this->unauthorized('Authorization header missing');
}