Send data from edit page to create page on a different resource.
Im using Laravel v10 and Filament PHP v3
I have the following models:
Client
LegacyClient
I want to allow users to re-use the legacy client data to create a new client record.
For this I want to create a form action that 'sends' the data from the form in EditLegacyClient.php page to the form in CreateClient.php page.
On my EditLegacyClient.php page I have:
Can someone please help me on how can I send the data across from the form in EditLegacyClient.php page to the form in CreateClient.php page?
Thanks...
0 Replies