-
Autocomplete::make('Field', 'field')
->options($this->getFieldOptions())
->placeholder('Choose a field')
->displayUsingLabels…
-
I followed the instructions, but the presentation does not change with ElementTabsRelations, no tabs.
```
ElementTabsRelations::make('Tabs')
->addTab('Contacts', BelongsToMany::make('Co…
-
-
Hi, awesome stuff! Thanks!
We have some filterable date fields around:
```php
Date::make('Version Date', 'version_date')
->filterable()
->sortable()
->onlyOnIndex(),
Date::make('C…
-
```
public function fields(Request $request)
{
return [
NestedTreeAttachManyField::make('Offer Categories',"categories","App\Nova\Category"),
];
}
```
It looks like the secon…
-
Did someone find way to make it works with package ebess/advanced-nova-media-library?
https://github.com/ebess/advanced-nova-media-library
Thank you
Daniel
-
**Is your feature request related to a problem? Please describe.**
Specifying what types are acceptable on a per-field basis will be a pretty common requirement, especially around image, audio, and…
-
How do you add a date field with this package? You need to cast the filed as a date so not sure where to put it since there is no model?
```
Date::make('Delivery')
->format('dddd,…
-
This is exactly what I need and it works well, thank you!
Just a few features that I would ideally like:
- Ability to control the width of the field on index. The field is very wide, maybe 300px, …
-
On `http://nova.ga/schedule`, I tried scheduling interviews but I got a 500 error. I realized it was because my browser doesn't support the HTML5 `date` and `time` field types, and as such I couldn't …