Trauma Zombie
Explore posts from serversNeed solution for outdated PDF URL
Hi guys,
I have QuoteResource. After saving EditQuote I run queue job to generate pdf version of quote. Then I have download action button on ViewQuote. Problem is that the button has url of old pdf, that is being regenerated, so I need to refresh page after about 1 second to get new url. Do you have any suggestion? I am using Spatie Media Library to store pdf and Spatie PDF to generate it (probably unimportant).
1 replies
How to get current tenant in FilamentServiceProvider?
Hi guys, I want to dynamicaly set some NavigationItems based on current tenant. So I need to register them in service provider, but I am not sure, how to access current tenant, becuase this is not working:
3 replies
Need two tabs with two different tables with two different models on one page
Hey guys,
I have this request: I have two models: Intervention and InterventionRequest. I have InterventionResource that has ListInterventions. I need on that page have tabs for Interventions and Requests. Each tab will have each own table for that model. How to do that? Should I create custom page?
2 replies
How to create form with Filament styles outside the panel?
Hi, guys, I am trying to create my first Filament form outside of panel, that I have created. I want to send email with signed URL, that will redirect user to fill some form that is on center of blank page styled like Filament panel. I am not sure how to do that easily.
7 replies
How to validate Select relation field?
Hi guys, I have 3 simple models: Organization, Store, Contact. Each Contact can be assign to Store only of his own Organization. I want to use Select field with multiple option, but I need to validate that the stores saved in belongs to organization of that contact.
This works just fine, but user can select Organization first, then select some Stores, then change organization and click save. It will save organization with stores that dont belongs to that organization.
7 replies
Confirm model for option inside SelectField?
Hi guys, I have Select field at the beginning of my form for resource. When user selects an option from this field, it fill fill many other fields in that form. It works just fine. But now I need to show confirmation modal when these other fields are already filled, so user has to confirm to update these fields. For the filling these fields, I am using afterStateUpdated hook. But I am not sure if there is an option to show confirmation modal.
1 replies
Loading wrong model on infolist
Hey guys, I found some strange behavior in my app and I can't help it.
I am trying to load all direct children and authenticated user here:
Inside my users table I see 3 users: Parent (auth one), Child 1 and Child 2. When I click on parent or child 1, I see infolist for these models, but when I click on child 2 it still give me infolist with child 1. Although I can see child id 2 in the url.
I am using this package: https://github.com/staudenmeir/laravel-adjacency-list
Can you help point me in the right direction?
2 replies
Where to send notification after relationship created
Hi guys, I have two simple models: Task and User. There is belongsToMany relationship between these two. In my Task resource I have Select::multiple() and also UsersRelationManager. In User resource I have TasksRelationManager. I want to send notification each time new user is assigned to task. Where do you suggest to place this part? I tried it inside TaskObserver on created method, but Filament is saving relationships after first commit, so there is no $task->users on created method.
3 replies
How to correctly typehint or set return types for IDE support and autocomplete?
Hi guys, I create small macro for all fields and entries:
But I still have these warnings:
Method 'hintIcon' not found in FilamentServiceProvider|\Filament\Support\Components\ViewComponent
Method 'warningHint' not found in \Filament\Forms\Components\Toggle
4 replies
How to disable toggables on table?
Hi guys, I have multiple resuable columns, but on some tables I want to disable toggability of that table. I know, I can set
$table->searchable(false)
to disable searchbar, but how to disable button for toggling columns on table (not on separate columns)?7 replies
Notify user assigned or detached using Select
Hi guys, I have model Task and model User.
Then I have this select component inside TaskResource:
Is it even possible to notify only assigned or detached users using this Select? I probably know how to do that via relation manager and button Attach and Detach, but I want to do it via this Select.
4 replies
Relationship not saved when using createOptionUsing on Select input
Hi guys, I am trying to create subject via select input with createOptionForm. Inside that form is another relationship (seller), that is not saved when I chain createOptionUsing method. When I remove that method seller relationship is saved correctly, but I also need to save broker_id (user) to that subject, thats why I use createOptionUsing method. Can you help me?
2 replies
Stream PDF to response
Hi guys, can you help me stream PDF to response directly from action? Is it even possible? Should I save my PDF firstly?
I am using Spatie Laravel PDF:
https://spatie.be/docs/laravel-pdf/v1/basic-usage/responding-with-pdfs
2 replies