Jamie Cee
Tailwind setup not entirely working
So the project route has this layout
I see there is also a tailwind.config.js located inside resources/css/filament/admin after I follow the steps for custom theme styling.
However, tailwind properties aren't working, such as sm:justify-center etc, and im so confused why
6 replies
User Menu to sidebar
Is it possible to move the user menu to the bottom of the sidebar without overriding the view blade?
So sticky position to the sidebar navigation, and on show, so settings and logout buttons directly, without clicking into the user menu.
Or would this be a case of disabling user menu then creating custom navigation actions?
18 replies
Calendar plugin as a custom page rather than a widget
I've been looking into using this plugin: https://filamentphp.com/plugins/guava-calendar
But rather than as a widget, I want it for the full page, but just cant get it to work at all. I've tried making a custom page, setting the view to the contents of the calendar view (without the widget tags). But just giving error after error
8 replies
Saving relationships
I have a relationship set in my User form for managing roles, however I want to add some logic for role checking to make it so admins cant modify super admin roles and other roles cant modify admin and super admin roles etc
10 replies
Calling a custom page from a function
I am extending the default passport oauth2 flow and want to customize the view, in which I want to stick with filaments design.
So I create a page class, and then in my function, I need to know how to return the page etc
I have this currently, and it goes to the blade file, but doesn't detect any of my variables which I set in the mount
27 replies
File Upload within a custom page is null
So My page resource
And my form im using the spatie media library file upload component
But in my dd() I only see name, there is nothing regarding the file upload part. Is there something im missing that I cant see in the documentation?
15 replies
Code to run after Related Page update
So I have resource sub-navigation and a relation page setup, however, I cant figure out how to run some code after update, it doesn't appear to run using functions such as handleRecordUpdate etc? Is there something obvious im missing?
6 replies
slow performance and 500 errors with large data
I've looked over older questions and just want to clarify if this is something to be optimized in v4?
In my loadtest I have 20,000 users, and it returns a 500 error. And if I downset to around 15,000 users, the page will load but runs extremely slow.
Is there anything available to optimize that I may be missing?
56 replies
Unable to interact with last record of table, or the pagination when using large amounts of data.
I say "large" but current only have 69 records in the table.
I can interact with the actions on every other record, except the last record. And I am unable to change the value of 'perPage' either. Any ideas?
6 replies
Policies for ManageRelatedRecords only
So in my Model, I have a class that extends ManageRelatedRecords, and is for managing users under that model.
I only want to allow the attaching and detaching under that Model, but still hiding access to users as a whole navigation, which I cant do, even when in the Manager class, I define the canViewAny method
3 replies
MorphToMany Select Relationship
Im getting completely frazzled with MorphToMany setup in a select instance.
I have a User that Morphs to Many Organisation and Product. Im trying to merge the items into a single Select, and I have it working, except when trying to edit a user, I cant get it to show the already existing records as already selected values.
I found this function
I can get the array of ids, but im not sure what im missing at displaying them as the selected values
5 replies