Roomdada
Roomdada
FFilament
Created by Roomdada on 1/29/2025 in #❓┊help
Missing required parameter for [Route: filament.admin.resources.insurers.view] [URI: admin/insurers/
No, I’m using IDs but I have a uuid column in the table, so I want to pass the uuid in the parameter instead of the ID. Filament’s documentation says that with the getRecordRouteKeyName method, this is possible, but I’m still getting the error.
8 replies
FFilament
Created by Roomdada on 6/16/2023 in #❓┊help
Recovering filter data
I want to retrieve the headerAction filter data
5 replies
FFilament
Created by Roomdada on 6/16/2023 in #❓┊help
Recovering filter data
the current code ExportAction::make()->label('Exporter')->exports([ ExcelExport::make('table')->withFilename(function ($query){ // get data from query after filtering $data = $query->get(); dd($data); }), ])
5 replies
FFilament
Created by Roomdada on 6/14/2023 in #❓┊help
Hide navigation
if(auth()->user()->name === 'ASACI'){ NavigationGroup::make('Administration') ->items([ NavigationItem::make('Users', 'users') ->label('Utilisateurs') ->icon('heroicon-o-user-group') ->isActiveWhen(fn () => request()->is('admin/users')) ->visible(fn() => auth()->user()->name === 'ASACI') ->url('/admin/users'), NavigationItem::make('log', 'log-viewer') ->label('Activités') ->icon('heroicon-o-clipboard-list') ->isActiveWhen(fn () => request()->is('admin/activities')) ->visible(fn() => auth()->user()->name === 'ASACI') ->url('/admin/activities'), ]), } here's all the code maybe I missed something
7 replies
FFilament
Created by Roomdada on 6/14/2023 in #❓┊help
Hide navigation
7 replies
FFilament
Created by Roomdada on 6/5/2023 in #❓┊help
Filament details page
Thank you very much.
11 replies
FFilament
Created by Roomdada on 6/5/2023 in #❓┊help
Filament details page
here ?
11 replies
FFilament
Created by Roomdada on 6/5/2023 in #❓┊help
Filament details page
<?php namespace App\Filament\Resources\ArticleResource\Pages; use App\Filament\Resources\ArticleResource; use Filament\Pages\Actions; use Filament\Resources\Pages\ViewRecord; class ViewArticle extends ViewRecord { protected static string $resource = ArticleResource::class; protected static ?string $title = 'Détails sur l'article'; }
11 replies
FFilament
Created by Roomdada on 6/5/2023 in #❓┊help
Filament details page
At what level of the code ?
11 replies
FFilament
Created by Roomdada on 6/5/2023 in #❓┊help
Filament details page
11 replies
FFilament
Created by Roomdada on 6/5/2023 in #❓┊help
Filament details page
How to replace for blade view ?
11 replies