romanbican / roles

Powerful package for handling roles and permissions in Laravel 5
MIT License
1.16k stars 296 forks source link

user model issue using laravel 5.3 #200

Open rajendraborse opened 7 years ago

rajendraborse commented 7 years ago

User.php in model error

namespace App;

use Illuminate\Database\Eloquent\Model;

use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Database\Eloquent\SoftDeletes; use Bican\Roles\Traits\HasRoleAndPermission; use Bican\Roles\Contracts\HasRoleAndPermission as HasRoleAndPermissionContract;

class User extends Authenticatable implements HasRoleAndPermissionContract { use HasRoleAndPermission , SoftDeletes;

frontendwizard commented 7 years ago

same problem here...

Ricky-rick commented 7 years ago

We decided to update and maintain a copy of bican roles. This issue is fixed in this copy. You can find it on packagist: https://packagist.org/packages/ultraware/roles

rajendraborse commented 7 years ago

ok