ItsTeegj
ItsTeegj
FFilament
Created by ItsTeegj on 12/22/2024 in #❓┊help
Do Table Actions work with Sushi Models?
I was able to resolve this by adding an ID field on my Sushi model in the getRows() method.
5 replies
FFilament
Created by ItsTeegj on 12/22/2024 in #❓┊help
Do Table Actions work with Sushi Models?
I should add that the requiresConfirmation is not firing, nor the dd in the action too.
5 replies
FFilament
Created by ItsTeegj on 11/30/2023 in #❓┊help
Can I have a route that can bypass multi-tenancy?
I used a workaround which consisted of creating a user observer and creating a tenant once a user is created. I then set the billingpage tenant to the first tenant of that user. Probably not the best solution, but it will work for now
6 replies
FFilament
Created by ItsTeegj on 11/30/2023 in #❓┊help
Can I have a route that can bypass multi-tenancy?
Here is my code for the menu item. MenuItem::make() ->label('Billing') ->url(function () { $tenant = Filament::getTenant(); return BillingPage::getUrl(['tenant' => $tenant]); }) ->icon('heroicon-o-wallet'),
6 replies