Keiron
Keiron
FFilament
Created by Keiron on 12/7/2023 in #❓┊help
Actions on Table Component, unable to locate dynamic-component
I've registered the Laravel Dynamic Component in the AppServiceProvider - doesn't feel like a proper fix, but does resolve it.
3 replies
FFilament
Created by Keiron on 12/7/2023 in #❓┊help
Actions on Table Component, unable to locate dynamic-component
I've also tried it with
->actions([
Action::make('edit')
->url(fn (Quote $record): string => route('quotes.edit', $record))
->openUrlInNewTab()
])
->actions([
Action::make('edit')
->url(fn (Quote $record): string => route('quotes.edit', $record))
->openUrlInNewTab()
])
(as the documentation suggests, but get the same error 😦 )
3 replies