When i use both Uuid and Entrust in my model i get an error:
Trait method boot has not been applied, because there are collisions with other trait methods
on App\User
this is my code:
namespace App;
use Zizaco\Entrust\Traits\EntrustUserTrait;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Uuids;
use EntrustUserTrait;
}
When i use both Uuid and Entrust in my model i get an error:
this is my code:
How do i solve this?
Thanks in advance!