aliaxon
Passing data to custom page through table action.
Having same issue:
I'm trying to pass data from a filament resource using custom action:
ActionsAction::make('view')
->label('Details')
->url(fn (MyQuizzes $record): string => route('filament.member.pages.quiz-detail-page', $record)),
The data I want to deliver is to a custom livewire component within custom page:
Custom Page view:
<x-filament-panels::page>
<livewire:QuizDetailPage/>
</x-filament-panels::page>
14 replies
Ldaprecord with filament
I'm also looking for the same possibility:
https://ldaprecord.com/ this has an extensive documentation for Jetstream, Breeze.
It would be great if some documentation is extended from filament core team
23 replies
Last Nested Select component doesn't work with ->multiple() function attached to it
The code works as intended with ->multiple() commented-out, which effectively passes domain_id to livewire variable, but if I try to make the variable as an array and set the selection option to ->multiple(), nothing is listed for selection on domain.
8 replies
Last Nested Select component doesn't work with ->multiple() function attached to it
@Leandro Ferreira I'm trying to create a reactive select filed form with section being the parent,.
Section->Certification->Domain
i.e: from section drop down select, when a user select section A it will only list child records in Certificaiton select fiel and vise versa for domain select field.
8 replies