Fenos\Notifynder\Models\Notification::getCustomFillableFields PHP Method

getCustomFillableFields() public method

Get custom required fields from the configs so that we can automatically bind them to the model fillable property.
public getCustomFillableFields ( ) : mixed
return mixed
    public function getCustomFillableFields()
    {
        if (function_exists('app') && app() instanceof Container) {
            return Arr::flatten(config('notifynder.additional_fields', []));
        }
        return [];
    }