ATOMICMAN
ATOMICMAN
FFilament
Created by ATOMICMAN on 1/21/2024 in #❓┊help
How to change ->native(false) globally rather than changing for each field.
I want to use filament's styling for all the dropdowns, date-time pickers etc all over the application. Is there a way to achieve this without specifying it everywhere?
4 replies
FFilament
Created by ATOMICMAN on 1/16/2024 in #❓┊help
Editing pivot table relating 3 tables
I have 3 tables, Users, Departments, and Unit. Each unit has departments and departments have users. I want to be able to allow access to multiple departments of multiple units and control it from a form within User resource. How can I approach this? I'm a bit new to Filament An example of the pivot table can look like:
| user_id | unit_id | department_id |
+---------+---------+---------------+
| 1 | 1 | 1 |
+---------+---------+---------------+
| 1 | 1 | 2 |
| user_id | unit_id | department_id |
+---------+---------+---------------+
| 1 | 1 | 1 |
+---------+---------+---------------+
| 1 | 1 | 2 |
2 replies