FilamentF
Filament3y ago
Gorg

Typed property Filament\Pages\Actions\Action::$livewire must not be accessed before initialization

When i try to create form wizard, i see this error.

My code:
use HasWizard;

protected static string $resource = TicketResource::class;

protected function getSteps(): array
{

return [
Step::make('Choose Contract')
->schema([
Select::make('contract_id')
->columnSpan(2)
->relationship('contract', 'created_at')
]),
];
}
Thanks!
Was this page helpful?