josef
josef
FFilament
Created by mohdaftab on 11/18/2023 in #❓┊help
Table, Sort, Edit and Add button all responding really slow on the server
I'm thinking you just have to bite the bullet and investigate server side what's taking long. Might be db queries, some misconfiguration, any number of reasons
22 replies
FFilament
Created by mohdaftab on 11/18/2023 in #❓┊help
Table, Sort, Edit and Add button all responding really slow on the server
If this is not a prod environment, you could use the server timing api mentioned in your screenshots or the debug toolbar to further inspect what is taking so long
22 replies
FFilament
Created by Jon Mason on 11/18/2023 in #❓┊help
Filament not pulling from latest_team_id when coming back to the panel that has tenancy.
I'd also advise you to not make the middleware persistent, as ajax requests don't have the tenant in the URL, so it can't be determined. Might also be source of the problem, depending on how you implemented the middleware. Care to share the code?
5 replies
FFilament
Created by Soundmit on 11/18/2023 in #❓┊help
Making slug from 2 input
Although formatStateUsing on the slug field should work
17 replies
FFilament
Created by hdaklue on 11/18/2023 in #❓┊help
Pagination Bug
can you reproduce on a new project? If so, it might be a bug, but I doubt it and am quite certain it's some caching issue with you locally or the server. Does it also occur in a different browser or incognito mode?
28 replies
FFilament
Created by hdaklue on 11/18/2023 in #❓┊help
Pagination Bug
Not for me on latest version (or any before that). Refresh cache?
28 replies
FFilament
Created by Lágrimas on 11/17/2023 in #❓┊help
login page
I did it by overwriting the card component and adding an optional background image that I can pass to the component, the rest is css
5 replies
FFilament
Created by 3rgo on 11/17/2023 in #❓┊help
Ability to skip validation on form ?
One possible solution would be to not set validation rules on the fields, and only apply custom ones when using submit
9 replies
FFilament
Created by Jon Mason on 11/18/2023 in #❓┊help
Filament not pulling from latest_team_id when coming back to the panel that has tenancy.
You sure that latest_team_id is updated correctly?
5 replies
FFilament
Created by King Dice on 11/18/2023 in #❓┊help
Make a column smaller (sort of an index)
try ->grow(false)
5 replies
FFilament
Created by Jon Mason on 11/18/2023 in #❓┊help
My Select isn't getting a value on form submit from Livewire Component
I assume you select a value?
6 replies
FFilament
Created by SheepBild on 11/13/2023 in #❓┊help
TimePicker default doesn't work
Try to use a Carbon object rather than a string
5 replies
FFilament
Created by mohdaftab on 11/18/2023 in #❓┊help
Table, Sort, Edit and Add button all responding really slow on the server
First, check the network tab in your browser to see which request takes long and maybe even why. Might be any number of reasons. Just slow server (other requests taking as long?), database. Best case, use an analyzer solution to inspect what happens in the code and where it takes longer than expected
22 replies
FFilament
Created by King Dice on 11/18/2023 in #❓┊help
Why are resources added to my admin panel automatically?
Resources are not pages, and are automatically discovered. If you don't want to show a resource for some or all users, you can disallow the view-all permission using its policy
4 replies
FFilament
Created by Defenestrația on 11/18/2023 in #❓┊help
mutateFormDataUsing not called if no form is present
That makes sense. You could instead just modify the CreateAction to create a new item/model
4 replies
FFilament
Created by Samir on 11/8/2023 in #❓┊help
Problem showing array in Infolist using RepeatableEntry
First off, you have to put the schema into a closure. There is a bug that leads to all entries being the first one. Secondly, if syn is an array, you should access to array entries in the TextEntries inside the repeater, no?
17 replies
FFilament
Created by leeb98 on 11/8/2023 in #❓┊help
if ImageColumn working ?
Share some code please
3 replies
FFilament
Created by josef on 10/14/2023 in #❓┊help
Disabled relationship field is added to inserted valued on create
It does seem that it only occurs for one of the relationships though, not sure why. It's a MorphToMany on the model.
3 replies
FFilament
Created by Albert Lens on 9/15/2023 in #❓┊help
Money Cast (currency)
You either decide on one separator and enforce it, which users are used to, as it is a problem everyone has to tackle when doing currencies, or you allow free input and have the very hard problem of figuring out what the user meant
22 replies
FFilament
Created by Albert Lens on 9/15/2023 in #❓┊help
Money Cast (currency)
but input is always 'XXXn.YY'
22 replies