nanopanda
nanopanda
FFilament
Created by 0kyouma1 on 3/24/2025 in #❓┊help
Filtering data taking too long with huge records
I would recommend logging the queries that your filters are triggering locally and running them directly against the production DB. Approximately how many records is "huge"? If your production DB is on the same server as your app then it likely does not have enough memory. A large MySQL / MariaDB can eat up 2GB easily.
7 replies
FFilament
Created by bernhard on 3/20/2025 in #❓┊help
Optionally activate table summary with action
This is in getHeaderActions() on the ListRecords class. I'm storing the toggle state for each table in the session, with the key being based off of the table class name.
Action::make('toggle_summaries')
->label('Summaries')
->icon( function() {
return session()->get( self::getShowSummariesKey() ) ? 'heroicon-o-eye' : 'heroicon-o-eye-slash';
})
->action( function() {
$key = self::getShowSummariesKey();
$currentVal = session()->get( $key );

//Toggle and refresh
session()->put( $key, !$currentVal );
$this->redirect('#', true);
}),
Action::make('toggle_summaries')
->label('Summaries')
->icon( function() {
return session()->get( self::getShowSummariesKey() ) ? 'heroicon-o-eye' : 'heroicon-o-eye-slash';
})
->action( function() {
$key = self::getShowSummariesKey();
$currentVal = session()->get( $key );

//Toggle and refresh
session()->put( $key, !$currentVal );
$this->redirect('#', true);
}),
7 replies
FFilament
Created by bernhard on 3/20/2025 in #❓┊help
Optionally activate table summary with action
7 replies
FFilament
Created by bernhard on 3/20/2025 in #❓┊help
Optionally activate table summary with action
@bernhard I think this is a recently introduced bug/change. I have an action that toggles summarizer visibility and prevents the empty rows and queries from running when hidden on v3.2.142. Somewhere around v3.3 the behavior changed to what you are seeing. The only alternative seems to be to pass an empty [] to ->summarize, but it unfortunately does not take a closure
7 replies
FFilament
Created by johny7 on 1/9/2025 in #❓┊help
Filament exports under fly.io
@johny7 I'm vanilla S3 rather than Tigris. I created the CORS configuration for my bucket via AWS Console. You may also need to set FILAMENT_FILESYSTEM_DISK in your fly.toml. https://filamentphp.com/docs/3.x/forms/fields/file-upload#configuring-the-storage-disk-and-directory Aside from that, I have a private S3 disk defined named 'assets', and my FileUpload config looks like this:
Forms\Components\FileUpload::make('file_path')
->disk('assets')
->visibility('private')
...
Forms\Components\FileUpload::make('file_path')
->disk('assets')
->visibility('private')
...
12 replies
FFilament
Created by johny7 on 1/9/2025 in #❓┊help
Filament exports under fly.io
@johny7 Not directly related to your question, but I have a Filament app deployed on Fly.io with many export actions, file uploads, etc. I use sync for local dev, but AWS ( SQS, S3 ) for queue and shared storage needs. Also have small cpu-1x machines for cron and worker(s).
12 replies
FFilament
Created by Oddman on 1/7/2025 in #❓┊help
Man... Filament is so damn slow :(
What are your dev/production environments like? Have you tried running the filament-demo project? For example, I'm using Laravel Sail on an M3 Pro Macbook and most pages are 2-300ms, depending on query complexity. Any external services/APIs being called?
30 replies
FFilament
Created by TranceCode on 11/13/2024 in #❓┊help
Insert import and export button here!
@Mokatchi Icon is just from the action config, like: ExportAction::make()->icon('heroicon-o-document-arrow-down') The name is automatically added based on the $model static var from the Exporter class, but you can override that with ->label() config as well
7 replies
FFilament
Created by Konaś on 12/2/2024 in #❓┊help
Docker with Laravel 11, Filament 3
@Konaś have you looked into Laravel Sail? It generates a docker-compose.yml (for development).
13 replies
FFilament
Created by TranceCode on 11/13/2024 in #❓┊help
Insert import and export button here!
No description
7 replies
FFilament
Created by Arjan on 10/24/2024 in #❓┊help
Searchable MorphTo
Having a relation named 'model' seems like it might break something, or at the very least be confusing. I'm not sure on your specific error here, but you can pass a closure to searchable() and override the query to search specific columns of your MorphTo models.
->searchable( query: fn ( $query, string $search)
=> $query
->orWhereMorphRelation(
relation: 'somethingable',
types:[Project::class],
column:'title',
operator:'like',
value:"%{$search}%"
)
->orWhereMorphRelation(
relation: 'somethingable',
types:[Party::class],
column:'name',
operator:'like',
value:"%{$search}%"
)
)
->searchable( query: fn ( $query, string $search)
=> $query
->orWhereMorphRelation(
relation: 'somethingable',
types:[Project::class],
column:'title',
operator:'like',
value:"%{$search}%"
)
->orWhereMorphRelation(
relation: 'somethingable',
types:[Party::class],
column:'name',
operator:'like',
value:"%{$search}%"
)
)
5 replies
FFilament
Created by loco on 10/18/2024 in #❓┊help
Grouping Rows with Closure/Tree relation
I'm not sure how getKeyFromRecordUsing functions internally, but based on your output it looks like it's still doing the actual group partitioning based on the "name" attribute of the product. I think you would need to make the attribute passed in to Group::make() an actual relation, like "parent.name" for the DB query to be output correctly.
6 replies
FFilament
Created by Xavi on 10/10/2024 in #❓┊help
Full page loading
@Dennyvik Hmm, have you traced why the modal takes so long to display? I tested a similar column Action structure to your code above, without your $record logic. The modal works normally, and if I add some very slow filters to my table, then the spinner will show correctly before the modal is displayed. Did you add the RenderHook on PanelsRenderHook::FOOTER in your PanelProvider? Any custom theme styles that might conflict?
19 replies
FFilament
Created by Xavi on 10/10/2024 in #❓┊help
Full page loading
@Dennyvik why does your modal form take so long to load? Is there large query populating a Select field or some other heavy Livewire action? Post some code and I can maybe try to test
19 replies
FFilament
Created by Xavi on 10/10/2024 in #❓┊help
Full page loading
@Xavi I just hacked up the markup from the example: <div x-cloak x-show="$store.isLoading.value" class="h-screen w-screen fixed bg-gray-950/50 left-1/2 -translate-x-1/2 z-[6000001]" > <div class="absolute top-1/2 -translate-y-3/4 left-1/2"> <h2 class="text-center text-gray-400 font-bold text-2xl">Loading...</h2> <x-filament::loading-indicator class="w-72 h-72 text-center" /> </div>
19 replies
FFilament
Created by Xavi on 10/10/2024 in #❓┊help
Full page loading
@Dennyvik hmm, I'm not sure. It works for me site-wide on any Action that triggers Livewire 'commit' events. What does your TextColumn->url() code look like?
19 replies
FFilament
Created by Xavi on 10/10/2024 in #❓┊help
Full page loading
@Dennyvik Have you successfully implemented what's outlined in the link above from Lara Zeus? You can adjust the timeout setting on line 21 of the blade.
19 replies
FFilament
Created by agaitan026 on 10/9/2024 in #❓┊help
table inside tabs its possible?
I may be wrong, but your top level tabs seem to more of a top Navigation? In that case you can use ->topNavigation() on your Filament PanelProvider to get a similar effect, although I think the default sidebar nav is more flexible and generally a better approach for a Filament app. Also, while you can likely achieve something close to your screenshot by creating custom Pages and a blade template wrapper, it will probably take a lot more work to get there vs. leveraging the UX of Filament's built-in layout + components.
35 replies
FFilament
Created by Xavi on 10/10/2024 in #❓┊help
Full page loading
@Xavi I recently implemented the example from Lara Zeus (many thx!!) and it works great. I set the timeout at 1500ms and changed the markup so that the spinner is center screen and masks the entire window from additional clicks.
19 replies