You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.
The idea is that this package still uses the old Laravel model's pattern (have models in app instead of app\models) but this changed on Laravel 8 by default. So for this package to work (because it is doing use App\User; where it needs it) you have to have that class autoloaded/available, hence if you have your model on App\Models\User, you can "alias" it by creating a class that extends the original but is also available as App\User.
That is why it is empty, it is just an alias... This is one file that uses this:
Under installation steps. In point 3
Step 3. Check if App\User exists
If I navigate to this link it shows
`<?php
namespace App;
class User extends Models\User {
//leave this empty
}`
I have few questions
The text was updated successfully, but these errors were encountered: