I am having trouble logging out, and am getting the following error when running Auth::logout()
LaravelArdent \ Ardent \ InvalidModelException
No message
Here is my user model:
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Auth\Authenticatable;
class User extends Ardent implements AuthenticatableContract
{
use Authenticatable;
....
}
I am having trouble logging out, and am getting the following error when running
Auth::logout()
Here is my user model: