webpatser/laravel-uuid

Trait method boot has not been applied, because there are collisions with other trait methods

DutchPrince opened this issue · 0 comments

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;

}