Mohamed Ayaou
Mohamed Ayaou
FFilament
Created by Roshan_k on 2/22/2025 in #❓┊help
Customize Create page and Edit page Action Labels
3 replies
FFilament
Created by br1 on 2/19/2025 in #❓┊help
change position of global search
You may do it with only css, just try it in the dev tools
6 replies
FFilament
Created by aj-bhg-vt on 2/19/2025 in #❓┊help
Hiding Group Summary on Grouped Table
you can target only the resource table you want with a parent class by filament up in the DOM
3 replies
FFilament
Created by aj-bhg-vt on 2/19/2025 in #❓┊help
Hiding Group Summary on Grouped Table
I remeber a similar issue in the help thread and that only option was to hide the unwanted summary with a custom css
3 replies
FFilament
Created by Hung Thai on 2/20/2025 in #❓┊help
Displaying Relationship Records in Filament Table instead of Owner Model's resources
as your use case is not usual it will be hard to help, sorry
6 replies
FFilament
Created by Hung Thai on 2/20/2025 in #❓┊help
Displaying Relationship Records in Filament Table instead of Owner Model's resources
I think you will need to customize the relation manager too as you did with the normal table
6 replies
FFilament
Created by kabu on 2/20/2025 in #❓┊help
Table responsive, using Table Builder Layout
4 replies
FFilament
Created by kabu on 2/20/2025 in #❓┊help
Table responsive, using Table Builder Layout
most of filament layout methods accepts an array like
Grid::make('layout')
->columns([
'default' => 1
'sm' => 3,
'xl' => 6,
'2xl' => 8,
])
Grid::make('layout')
->columns([
'default' => 1
'sm' => 3,
'xl' => 6,
'2xl' => 8,
])
4 replies
FFilament
Created by Señor Nikola on 2/20/2025 in #❓┊help
Generating Current View for PDF
what are the default file size/dimensions for you PDF library?
5 replies
FFilament
Created by Señor Nikola on 2/20/2025 in #❓┊help
Generating Current View for PDF
if you mean the issue is the sizes of your screen then you might just get it using js window.width or similar js apis and then pass it to the PDF generation library as the file aspects
5 replies
FFilament
Created by Zen Nitiruj on 2/20/2025 in #❓┊help
Database Notification does not work
as @LeandroFerreira mentioned you have to run your worker (search how to run on a server for production) in case you are using real-time server like pusher or reverb instead of DB pooling make sure they are running, e.g php artisan reverb:start
4 replies
FFilament
Created by Firebat on 2/20/2025 in #❓┊help
favicon not being displayed
The format may cuase an issue too, make sure it's .ico and check from different browsers as well as refreshing the browser cache (ctrl/cmd + shift + r)
7 replies
FFilament
Created by Firebat on 2/20/2025 in #❓┊help
favicon not being displayed
some browsers fetches the /favicon.ico directly from the root dir (/public in laravel case) so make sure to have a copy in there or change it path to the public
7 replies
FFilament
Created by Firebat on 2/20/2025 in #❓┊help
favicon not being displayed
does your browser console throes any 404 errors?
7 replies
FFilament
Created by Yor on 2/20/2025 in #❓┊help
Navigation for multi role panel
try to override the shouldRegisterNavigation resource method:
public static function shouldRegisterNavigation(): bool
{
return auth()->user()->hasRole('super_admin');
}
public static function shouldRegisterNavigation(): bool
{
return auth()->user()->hasRole('super_admin');
}
10 replies
FFilament
Created by ziolupo on 2/19/2025 in #❓┊help
Register Page with parameters
Always remeber that every filament page is just a Livewire component
5 replies
FFilament
Created by Myster on 2/18/2025 in #❓┊help
Bulkaction notification
Oh, I think you have to share the code for your use case with detailed comments, what you want to happened, and what is happening
9 replies
FFilament
Created by Myster on 2/18/2025 in #❓┊help
Bulkaction notification
Can you share the code of the bulk actions, I think there is an overriding to a default behavior
9 replies
FFilament
Created by Myster on 2/18/2025 in #❓┊help
Bulkaction notification
Do you mean the notification is dispatched just by clicking on the 'Delete selected' and even before the logic starts?
9 replies