© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•7mo ago•
6 replies
kabu

Create table action that redirect to a new CreateRecord page

Hi! I'm wondering if it's possible to create table actions that open a create record page, prefilled with data from a selected record. I managed to do it for the edit page, but not for creating a new one. Im getting this error: Target [Illuminate\Database\Eloquent\Model] is not instantiable. ->actions([
Tables\Actions\Action::make('R1')
->label('R1')
->icon('heroicon-o-arrow-path')
->tooltip(__('Rectificativa R1'))
->color('warning')
->url(fn($record) => route('filament.client.resources.invoices.verifactu-r1', [
'record_id' => $record->id,
]))
->visible(fn($record) => in_array($record->status, ['pending', 'revision']))
->openUrlInNewTab(false),
Solution
filment has Replicate action check this https://filamentphp.com/docs/3.x/actions/prebuilt-actions/replicate
Replicate action - Actions - Filament
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Create a new page without resources and that only works to redirect
FilamentFFilament / ❓┊help
2y ago
Cluster, subNav, add the CreateRecord action page to parent
FilamentFFilament / ❓┊help
13mo ago
Livewire Table action redirect the table ?
FilamentFFilament / ❓┊help
14mo ago
Relationship table on modal? or NEW action on table action page?
FilamentFFilament / ❓┊help
2y ago