Tim van Heugten
Tim van Heugten
FFilament
Created by waterflai on 3/29/2025 in #❓┊help
Custom page with parameter (independent from resource)
Seems like the route is expecting a tenant parameter (which makes sense as you state you are using multi tenancy). This means you need to pass the tenant into the url or disable tenancy for the specific route (not sure how that would work for custom pages, for resources it works like described here: https://filamentphp.com/docs/3.x/panels/tenancy#disabling-tenancy-for-all-resources). What is your tenancy model? Guess it’s not Team looking at that snippet?
4 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
Yeah, @Illizian asked where he could submit suggestions.
69 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
69 replies
FFilament
Created by islandnuge on 3/6/2025 in #❓┊help
Can you add a custom css class to a form component (like a toggle?)
You hate stacking the label and toggle (https://filamentphp.com/docs/3.x/forms/fields/toggle#positioning-the-label-above)? Will help make them look aligned.
8 replies
FFilament
Created by SeanKiwi (Semantics) on 3/5/2025 in #❓┊help
WorkOS integration with Laravel 12 and Filament?
I have a proof of concept that works. I use the laravel/workos utility package, add that middleware to the filament configuration, disable panel login, get the permissions from the workos token and check if the user has the permissions to access the panel in the canAccessPanel() method. All seems to work fine. What we discovered is that WorkOS is not localizable at all (as we speak) which would mean you can’t use their AuthKit and emails (we are a Dutch company) unless you build all that yourself using their APIs.
2 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
First off, quality of the docs is pretty decent right now but great you guys look to improve. As a hobbyist developer myself I struggled a little with how to prevent duplicating code. Complicated form fields or table columns or complete forms for example. Had a hard time figuring out what the best approach to this issue was. Would be great to have some examples on this topic.
69 replies
FFilament
Created by fdelna on 7/21/2024 in #❓┊help
How to create a view page that displays all attributes from two related records?
What is the relation? If position belongs to employee can’t you just do ‘position.name’ (if the view page is on the employee resource)?
2 replies
FFilament
Created by iqbalmahatmaputra on 7/17/2024 in #❓┊help
How to show data from RichEditor to infolist-custom? My bullet & numbering doesn't render properly
Isn’t that just because you are using Tailwind, which resets all styles? You should style the elements using css.
4 replies
FFilament
Created by travlatra on 6/28/2024 in #❓┊help
php noob here - how should i create a crud page available to users
If the public version is like a medium.com it would probably be best outside a panel on a public route. That would be default Laravel stuff (including routes for catagories, topics, search, etc)
7 replies
FFilament
Created by King Dice on 6/30/2024 in #❓┊help
Empty hidden fields
Multiple ways to go about this. On toggle you could set ‘the other value’ to null or on submit you could check the toggle and set the other value to null. What I also always like to do is self validate the model for this case, so that if whatever possible edge case / bug occurs the model can’t be saved.
4 replies
FFilament
Created by Gediminas on 7/1/2024 in #❓┊help
Can a MenuItem redirect to an external URL?
How about using a protocol? 😐
4 replies
FFilament
Created by Felix Schmid on 6/30/2024 in #❓┊help
Dynamically set current panel
Maybe you can borrow some inspiration here: https://github.com/filamentphp/filament/discussions/2058#discussioncomment-7537089 - you can look into the tenancy package as well.
3 replies
FFilament
Created by travlatra on 6/28/2024 in #❓┊help
php noob here - how should i create a crud page available to users
Create a second panel for your users (ie. Admin vs App panel).
7 replies
FFilament
Created by Nick Ruddra on 6/23/2024 in #❓┊help
Can I add verification system In multi tenant!
Two approaches; create a new model (ie. ShopRequest with the minimum required fields needed to create a shop) and create logic to view them as admin, maybe even edit them to make corrections and then create an actual shop from them (copying the fields). This approach is often used for creating new users (ie. user invites). Another approach is to create the actual shop with a flag (needs_approval boolean or approved_at datetime) and change all queries that resole shops to only include the ones that are approved (except for the admin, who would be able to see them and toggle approval).
3 replies
FFilament
Created by Nick Ruddra on 6/24/2024 in #❓┊help
In multi tenant how can I remove functionality that user can't create team!!
Read about policies and on your ShopPolicy make sure users are not allowed to create (but you as admin can). As far as I remember Filament respects this policy and the create new shop will disappear.
3 replies
FFilament
Created by Felix Schmid on 6/24/2024 in #❓┊help
Implement multi level tenancy
My admin panel is just for me. I can see/check all users/customer across all tenants, onboard new tenants, etc.
8 replies
FFilament
Created by Felix Schmid on 6/24/2024 in #❓┊help
Implement multi level tenancy
However, I did remove the email unique from the user model so someone can use the same email for creating an account for customers at different tenants. So the email needs to be unique per tenant per use type (as the tenant user could potentially be a user for a customer of his own or another tenant). This required some custom logic to basic validate for the different user types.
8 replies
FFilament
Created by Felix Schmid on 6/24/2024 in #❓┊help
Implement multi level tenancy
For the customer panel I also enabled multi tenancy, but for the customer model. Both tenant and customer model aren’t multi tenant in the sense that a user can only be attached to one.
8 replies
FFilament
Created by Felix Schmid on 6/24/2024 in #❓┊help
Implement multi level tenancy
8 replies
FFilament
Created by Felix Schmid on 6/24/2024 in #❓┊help
Implement multi level tenancy
I’m doing something similar for a new project. I use three panels though (admin, tenant, customer). Tenants can set a slug, which is used as a subdomain, and logo and color. This tenant panel is basically as described in the docs using multi tenancy. On the customer panel I created middleware that checks the slug (subdomain) to load the tenant and make it accessible throughout the rest of the process. For example to set the panel’s color, brand name or logo. On the user model I introduced a type (admin, tenant, customer) which basically functions as a layer on top of roles.
8 replies