We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What if we want to add a Checkbox ? We want to allow admin to add a watermark using our CDN.
The text was updated successfully, but these errors were encountered:
Instead of:
->withCustomFields( ['copyright' => __('Copyright')], overwrite: false )
Something like this ?
->withCustomFields([ Text::make(__('Copyright'), 'copyright'), Checkbox::make(__('Watermark'), 'watermark'), ], overwrite: false )
Sorry, something went wrong.
We'd also love to add Relationship with media. For exemple: Tagging people (from our people table, not just plain text) in an image.
->withCustomFields([ Text::make(__('Copyright'), 'copyright'), Checkbox::make(__('Watermark'), 'watermark'), Tags::make(__('People'), 'people'), ], overwrite: false )
A feature like this is implemented in https://github.com/ebess/advanced-nova-media-library#custom-properties
No branches or pull requests
What if we want to add a Checkbox ?
We want to allow admin to add a watermark using our CDN.
The text was updated successfully, but these errors were encountered: