I'm having trouble using Ardent package with Laravel authentication.
The problem is that in order to use Laravel authentication I have to extend my User
model with Authenticatable
(use Illuminate\Foundation\Auth\User as Authenticatable;
)
But in order to use Ardent, I need to extend my User
model with Ardent
.
PHP doesn't support multiple inheritance (thank god), so now I am out of ideas on how to solve this?