Gorg
Typed property Filament\Pages\Actions\Action::$livewire must not be accessed before initialization
I fixed this with:
protected function getFormSchema(): array
{
return [
Wizard::make()
->schema([
Step::make('Choose Contract')
->schema([
]),
Step::make('Details')
->schema([]),
])
];
}
15 replies
Typed property Filament\Pages\Actions\Action::$livewire must not be accessed before initialization
Trait "CreateRecord\Concerns\HasWizard" not found, when i try use Filament\Resources\Pages\CreateRecord\Concerns\HasWizard; i see $livewire must not be....
15 replies