Artesaos\Defender\Traits\Models\Role::__construct PHP Method

__construct() public method

public __construct ( array $attributes = [] )
$attributes array
    public function __construct(array $attributes = [])
    {
        $this->fillable = ['name'];
        parent::__construct($attributes);
        $this->table = config('defender.role_table', 'roles');
    }