Forms\Components\Select::make('supplier_id') ->label('Supplier') ->required() ->searchable() ->options( \App\Models\Supplier::all() ->pluck('name', 'id') ) ->columnSpan(2), Forms\Components\TextInput::make('total_units') ->required() ->columnSpan(2), Forms\Components\TextInput::make('cost_unit') ->required() ->columnSpan(2), Forms\Components\TextInput::make('total_cost') ->required() ->columnSpan(2), Forms\Components\Repeater::make('marketplaces') ->relationship('markets') ->reorderableWithButtons() ->schema([ Forms\Components\Select::make('marketplace_id') ->searchable() ->label('Marketplace') ->required() ->options( \App\Models\Marketplace::all() ->pluck('country', 'id')->toArray() ) ->columnSpan(1), Forms\Components\TextInput::make('quantity') ->required() ->columnSpan(1), ]) ->columnSpan(4),