Bibesko

Results 3 comments of Bibesko

Because you have some error on one of the resources. Open the log file on the project and see what it is about, or add `public static $canImportResource = false;`...

It doesn't work for me. When i create field like this: `SelectPlus::make('Checklists', 'checklists', Checklist::class)->dependsOn('tenant_id', function ($field, NovaRequest $request, FormData $formData) { if ($formData['tenant_id']) { dd($formData); } }),` And change tenant_id...

But still some native field options don't work, for example: ```php SelectPlus::make('Product Varieties', 'productVarieties', ProductVariety::class) ->usingDetailLabel('name') ->resolveUsing(fn($models) => $models->sortBy('pivot.order')->values()) ->reorderable('order') ->required() ->onlyOnForms() ->dependsOn('productType', function (SelectPlus $field, NovaRequest $request, FormData $formData)...