I'm using the basic HTTP authentication provided in Laravel to log in to my website. However, when I call Auth::Check()
I always get false as the response even though I am logged in.
Does Auth::Check()
not work with the basic authentication model and if not, is there any way to check the basic authentication to see if a user is logged in?
This is my user class:
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'email', 'password',
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
public function getRememberToken()
{
return $this->remember_token;
}
public function setRememberToken($value)
{
$this->remember_token = $value;
}
public function getRememberTokenName()
{
return 'remember_token';
}
}
This is the segment of code where I set the authentication filter to use
$this->middleware('auth.basic', ['only' => ['create', 'store', 'edit', 'update', 'destroy']]);
And this is my Auth::Check()
call (Always prints 0):
public function show($id)
{
echo \Auth::check() ? '1' : '0';
die();
#.......
}