Forms\Components\Select::make('payment_method_id')
->label('Payment Method')
->relationship(name: 'paymentMethod', titleAttribute: 'name')
->required()
->createOptionForm([
Forms\Components\TextInput::make('name')->required(),
Forms\Components\Textarea::make('description')->helperText('more about channel, eg bank acc nu')->required(),
Forms\Components\TextInput::make('creator_id')->default(Auth::id())->readOnly(),
]),
Forms\Components\Select::make('payment_method_id')
->label('Payment Method')
->relationship(name: 'paymentMethod', titleAttribute: 'name')
->required()
->createOptionForm([
Forms\Components\TextInput::make('name')->required(),
Forms\Components\Textarea::make('description')->helperText('more about channel, eg bank acc nu')->required(),
Forms\Components\TextInput::make('creator_id')->default(Auth::id())->readOnly(),
]),