YASSIN459
am tired from try and try pls help
so am work with a small project and am using Wizard form
all is work perfect intil i use 3 table in the same page i have a 'client' table and cars table and matrucul table public static function form(Form $form): Form
{
return $form
->schema([
Wizard::make([
Wizard\Step::make('Order')
->description('Review your basket')
->schema([
Select::make('client_id')
->label('Client')
->relationship('client', 'name')
->searchable()
->preload()
->createOptionForm([
TextInput::make('name')->required(),
TextInput::make('phone')->required(),
])
->editOptionForm([
TextInput::make('name')->required(),
TextInput::make('phone')->required(),
])
34 replies