3rgo
Install Spatie Translatable Plugin
Usually when there's a conflict on composer dependencies, at the end of the error message there's the package blocking the resolution. Unfortunately on your error I didn't see it. I'm sorry I can't help you more
18 replies
Install Spatie Translatable Plugin
When you pull from git, you should first do composer install to install the dependencies based on the composer.lock file.
Composer update will update the dependencies to the latest version allowed by the constraints.
Can you please try doing a composer install, then your composer require command ?
18 replies
get select record on relation manager attach form
Oh this is the AttachAction from a relation manager ? This is different then.
I've never done it, but apparently, you can pass data to the relation manager : https://filamentphp.com/docs/3.x/panels/resources/relation-managers#passing-properties-to-relation-managers
11 replies
select not getting live() input
$get
is automatically scope to the current repeater item. Please see this section of the documentation on how to access parent field values : https://filamentphp.com/docs/3.x/forms/fields/repeater#using-get-to-access-parent-field-values3 replies
get select record on relation manager attach form
You rule function syntax is not correct, it's
rules
and the function inside should not be static. Then you can use $get
:
See https://filamentphp.com/docs/3.x/forms/validation#custom-rules11 replies
Custom Table Action
Why didn't you use the ToggleColumn ?
https://filamentphp.com/docs/3.x/tables/columns/toggle
You can use the lifecycle hook to display the notification
33 replies
Async status
Is it on a list ? If so, you can maybe
- have a data array with the status of each server, and initialized to null values
- display the array in a column using the
formatState
function,
- make the action check the status and update the data array, it should refresh the table
Not sure this would work, but that's how I would try it7 replies