Multiple forms on one page in v4
like this
https://github.com/filamentphp/filament/discussions/8319
how can i achieve same approach with filament v4, i have multiple forms in one page, each form interacts with different model
GitHub
Multiple forms on a v3 page throws exception · filamentphp filamen...
<?php namespace App\Filament\Pages; use Filament\Forms\Components\Section; use Filament\Forms\Components\TextInput; use Filament\Forms\Concerns\InteractsWithForms; use Filament\Forms\Contracts\H...
1 Reply
update : i just tried this approach
https://github.com/filamentphp/filament/discussions/8319
and it works for v4, thanks.
GitHub
Multiple forms on a v3 page throws exception · filamentphp filamen...
<?php namespace App\Filament\Pages; use Filament\Forms\Components\Section; use Filament\Forms\Components\TextInput; use Filament\Forms\Concerns\InteractsWithForms; use Filament\Forms\Contracts\H...