Akki
Akki
FFilament
Created by Akki on 4/1/2025 in #❓┊help
Restrict non filament panel user, accessing filament admin panel.
I am using laravel v11, with filament and livewire, i have admin panel using filament while normal user can sign-in without filament. Problem is when Admin user logs out and normal user logs-in, it redirect user to domain/admin page which is filament admin panel and shows 403 error. What i want is to redirect normal user to domain/dashboard page which is not a filament page or resource.
8 replies
FFilament
Created by Akki on 2/19/2025 in #❓┊help
Xls Export Set Column Width
Hello artisans, i am trying to customize column width for excel export functionality, do filament has any method for that?
5 replies
FFilament
Created by Akki on 2/12/2025 in #❓┊help
Excel Export autofit column width for header, registerEvent() is not working
I want to implement Header column width autofit as per the header content size, i had applied registerEvent() but it is not working. I also applied dd() and Log but nothing is printed in log file, if i add Log in constructor , it prints ( so no issue on log configuration ) My project tech stacks are : Laravel v11.x, filament v3.2 , livewire v3.0, maatwebsite/excel v3.1 My export file resides in : app/Filament/Exports/UserExporter.php =============================================UserExporter.php================================== class UserExporter extends Exporter implements WithEvents { protected static ?string $model = User::class; public static function getColumns(): array { return [ ExportColumn::make('id')->label('User ID'), ExportColumn::make('team.name')->label('Team Name'), ]; } public static function getCompletedNotificationBody(Export $export): string { $body = 'Your case export has completed and ' . number_format($export->successful_rows) . ' ' . str('row')->plural($export->successful_rows) . ' exported.'; if ($failedRowsCount = $export->getFailedRowsCount()) { $body .= ' ' . number_format($failedRowsCount) . ' ' . str('row')->plural($failedRowsCount) . ' failed to export.'; } return $body; } public function registerEvents(): array { Log::debug('method is called'); Log::info('AfterSheet event triggered!'); return [ AfterSheet::class => function (AfterSheet $event) { Log::info('AfterSheet event triggered!'); foreach (range('A', 'Z') as $columnID) { Log::info('Resizing column ' . $columnID); $event->sheet->getDelegate()->getColumnDimension($columnID)->setAutoSize(true); } }, ]; } I have already removed a cache, also tested in incognito window...
2 replies
FFilament
Created by Akki on 2/10/2025 in #❓┊help
multi file upload with total size limit
Hello team I am trying to limit a user to allow multiple file uploads, which is working, but I also want to set an overall limit of 20mb. Let's say Case 1 : upload 4 files each of 5mb ( ✅ ) Case 2: upload 1 file of 20 mb ( ✅ ) Case 3: upload 3 files of 10 mb ( ❌ ) Case 4: upload 1 file of 21 or more mb ( ❌ ) I am using laravel 11.31, Livewire 3.0 and filament 3.2 Do help if if you have any solution for this.
5 replies
FFilament
Created by Akki on 9/22/2024 in #❓┊help
Role based access
Hello guys', im new to filament so please bare with me, I need to create an app, say School Management System, where we have 3 roles : admin, teacher and students, each role has login access, student can submit the assignment, teacher can access it, and Admin can manage this two roles and other things. My concern is how to manage 3 roles , do i have to create 3 diffrent panels or i can manage with single panel based on role?
6 replies