Wizard with Summary Step and Back Buttons

Filament 4

This project demonstrates Filament's Wizard form functionality with the ability to display contextual information on each step based on selections made in previous steps.

ICfFCmeiy4CbGRaKcSpF3XyoyvxBVW-metaRmlsYW1lbnRFeGFtcGxlcyBUaHVtYkJhc2UgKDIpLnBuZw==-

Get the Source Code:

How it works

First, the HasWizard trait must be used to add a wizard form on the Create page.

use Filament\Resources\Pages\CreateRecord\Concerns\HasWizard;
use Filament\Resources\Pages\CreateRecord;
 
class CreateTask extends CreateRecord
{
use HasWizard;
 
protected static string $resource = TaskResource::class;
}

Steps for the wizard are added in the protected getSteps() method on the Create page class.

The FULL tutorial is available after the purchase: in the Readme file of the official repository you would get invited to.
Get the Source Code: All 113 Premium Examples for $99