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

__construct() public method

public __construct ( array $attributes = [] )
$attributes array
    public function __construct(array $attributes = [])
    {
        // Must to be declared before parent::__construct call
        $this->fillable = $fillable = ['name', 'readable_name'];
        parent::__construct($attributes);
        $this->table = config('defender.permission_table', 'permissions');
    }