Nathan Johnson
Nathan Johnson
Hi, thanks for this package! I'm looking at this as an alternative to Hashids, which I'm avoiding due in part to: > Clearly if you have access to the salt,...
Thank you for this package! Any plans to support Nova v4? https://nova.laravel.com/docs/4.0/upgrade.html
I read the "Add validation to your controllers" [doc](https://laravelactions.com/2.x/add-validation-to-controllers.html). We have a Livewire component which provides UI for CRUD of a resource (`Phone`, for example). While Livewire provides `validate()` as...
- Laravel 6.0.4 - Laravel Nova 2.9.2 - mrmonat/nova-translatable 2.0.2 Say we have a field like: ``` Translatable::make( __('Slug'), 'slug')->rules('required')->sortable()->help(__('help.tips.slug')), ``` In our application, we have two locales. If I...
### What happened? We're trying to use a Blade component as a column: ``` ComponentColumn::make('Fine Content', 'fine_weight_ozt') ->component('weight-with-conversions') ->attributes(fn ($value, $row, Column $column) => [ 'weight' => new Weight($row->weighing_unit_type, $row->fine_weight),...
Hello, thank you for this package! I took at a look at the favicon tag, and it seems to be barebones. I'm curious if it's possible to either exclude that...
Nothing seems to work when using the filesystem driver, even after manually creating currencies.json
I'm trying to use the `filesystem` driver to load the currencies from disk, but having no luck. My config: ``` 'driver' => 'filesystem', // ... 'cache_driver' => null, // ......
There doesn't appear to be a way to increase the width of a table within the diagram. As a result, many of the column names are cut off and can't...
We have jobs which call `nova_get_setting()`. We're using Laravel Horizon to manage the job queue. I've found that when you use Nova to change some nova-settings value, `nova_get_setting()` continues to...