Suppose I have a 10 table with one-to-one relationships like a tax submission form where one customer has only one relation with multiple tables.

Wizard::make([
    Wizard\Step::make('Order')
        ->schema([
            // ...
        ]),
    Wizard\Step::make('Delivery')
        ->schema([
            // ...
        ]),
    Wizard\Step::make('Billing')
        ->schema([
            // ...
        ]),
])

Wizard has only one submission & this is at the end of the form. I want to save data each step, but there is no scope in Wizard.

I want to create the first customer basic information in one single form with the first table. After creating the first table data, the customer will be allowed to access the second form. Using this way customers can save the form & when all forms are filled up they will send the final submission.

This will be very effective when long tables of data have to be filled up.

How can I achieve this using Laravel Filament v3?



Source link

Leave a Reply

Your email address will not be published. Required fields are marked *