Junaid
Junaid
FFilament
Created by Junaid on 7/18/2024 in #❓┊help
DOES Filment Import CSV action support QUEUE_CONNECTION = database?
I am trying to use Filament Import action using database connection. and when trying to import I get a query exection. Here is the link to it: https://flareapp.io/share/LPd8MQNP
5 replies
FFilament
Created by Junaid on 4/13/2024 in #❓┊help
Unable to change Navigation Group of some Plugins when they don't provide any configuration.
What I am trying to do: I am using some filament plugins like Resource lock Manager but they don't provide any option for changing navigation group. So they just put items under the Daashboard while I want them under a group . I know I can solve this problem by creating my own wrapper plugin but I don't think that is a feasible solution. There must be something within filament to do this which unfortunately I can't see. What I did: I tried https://filamentphp.com/docs/3.x/panels/navigation#registering-custom-navigation-items but it does create a new item but the original one also stays in items list which is what I don't want.
8 replies
FFilament
Created by Junaid on 3/29/2024 in #❓┊help
Unable to add Actions Inside Placeholder content of edit modal form.
How can I add an action inside Placehoder inside form widget. Here is how I have used Placeholder: Placeholder::make('notes') ->label('') ->content( function ($record) { if ($record?->notes) { foreach ($record?->notes as $note) { echo "<div class='bg-gray-100 p-2 mb-2 rounded-lg'>"; // echo "<div class='text-sm text-gray-500'>{$note->user->name} - {$note->created_at->diffForHumans()}</div>"; echo "<div class='text-sm'>{$note->content}</div>"; echo "</div>"; } } } ), I am displaying the notes of a user and I want to add a delete/remove action next to each note
8 replies