-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Look for App\Models\User before App\User in provider
- Loading branch information
Showing
2 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace PanicHD\PanicHD\Models; | ||
|
||
use App\Models\User; | ||
This comment has been minimized.
Sorry, something went wrong. |
||
use PanicHD\PanicHD\Traits\MemberTrait; | ||
|
||
class Member_AppModelsUser extends User | ||
{ | ||
use MemberTrait; | ||
|
||
protected $table = 'users'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Can this be made into a parameter?? We do not use the typical Laravel namespace scheme. Ditto for APp/Http/Controller>
Any advice??? I'd rather not create a fork.