Steelheart
Steelheart
FFilament
Created by blessing9531 on 9/15/2023 in #❓┊help
Has anyone implemented Filamentv3 with tenancyfolaravel https://tenancyforlaravel.com/
One thing to be aware of is that depending on your use case you may not need to make Filament aware of the multi-tenant nature of your app at all. If you're using subdomains for tenancy identification you likely don't need to use the Filament tenancy options at all and it will keep things much simpler.
13 replies
FFilament
Created by Steelheart on 8/23/2023 in #❓┊help
FileUpload temporaryUrl()
Ok will give that a shot thanks
6 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
I am a noob at this 🙂 But this is a plain vanilla Laravel/Filament install and all I did was run php artisan make:filament-resource Job --generate the job table has maybe 18 columns total. For this use case it's fine really, even if it takes 1 second to load as it's just the admin side of Larajobs. Trying to make Livewire/Filament work for a much larger project that I've been going back and forth on tech stack on though. I'm not too worried about it for now. There's really only a few key spots in that app where maximum speed is critical and I could always use a custom table for those cases to avoid this while still using Filament tables for the standard crud actions throughout the app that are super annoying to build and Filament would make go much faster.
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
Column code is whatever generator produced for the resource automatically. Will look when I get home.
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
Very much doubt it's the database as there are only a few hundred seeded rows.
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
I did try that yeah.
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
I guess I am curious if nobody else sees this speed issue? Perhaps it's something else? I'm assuming it's the thousands of views being rendered but perhaps it's something else.
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
That won't fix it, it would probably need to be something more custom. Since every cell/column/etc in the table is a component they all need to be rendered.
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
I wonder if there's some way to pre-compile the blade template as ultimately rendering 3,000 views on every request is just going to be slow.
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
Hmm yeah. I could give that a shot.
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
There's only a few hundred rows of data, it's not the database it's the view rendering
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
35 replies
FFilament
Created by Steelheart on 8/22/2023 in #❓┊help
Table performance improvements tips?
It's just raw values from the database. I used the generate option on a resource just to test it out.
35 replies