Custom Page with Filament form using Wizard to create a quiz and calculate the quiz result.
One-time payment
Sign in with GitHub to buy
Sign in first, then complete your $9 checkout.
30-day money-back guarantee
The whole logic and functionality here live inside a custom Page in Filament called Questionnaire:
Let's take a look at the Page:
app/Filament/Pages/Questionnaire.php
use App\Models\Question;use Filament\Forms\Components\Radio;use Filament\Forms\Components\Wizard;use Filament\Forms\Form;use Filament\Pages\Page;use Illuminate\Support\Facades\Blade;use Illuminate\Support\HtmlString; class Questionnaire extends Page{ protected static ?string $navigationIcon = 'heroicon-o-document-text'; // ...