Compare commits

..

1 Commits

Author SHA1 Message Date
ea4f46f96d #122 Non-admins can see payments in customer edit page 2025-03-11 12:52:34 -04:00
3 changed files with 5 additions and 9 deletions

View File

@ -1,6 +1,4 @@
# Changelog # Changelog
**2025-03-04**
- Fixed #123 - Typo 'Add to product Services'
**2025-03-11** **2025-03-11**
- Fixed #122 - Non-admins can see payments - Fixed #122 - Non-admins can see payments

View File

@ -145,10 +145,6 @@ public static function form(Form $form): Form
TableRepeater::make('order_products') TableRepeater::make('order_products')
->label('Garments') ->label('Garments')
->addActionLabel('Add new garment')
->reorderable()
->cloneable()
->defaultItems(1)
->schema([ ->schema([
TextInput::make('sku') TextInput::make('sku')
->datalist(OrderProduct::all()->unique('sku')->pluck('sku')->toArray()), ->datalist(OrderProduct::all()->unique('sku')->pluck('sku')->toArray()),
@ -184,12 +180,14 @@ public static function form(Form $form): Form
->rules('numeric'), ->rules('numeric'),
]) ])
->label('Sizes'), ->label('Sizes'),
]), ])
->reorderable()
->cloneable()
->defaultItems(1),
Repeater::make('services') Repeater::make('services')
->view('filament.forms.compact-repeater') ->view('filament.forms.compact-repeater')
->label('Product Services') ->label('Product Services')
->addActionLabel('Add new product service')
->schema([ ->schema([
Grid::make(19) Grid::make(19)
->schema([ ->schema([

View File

@ -25,7 +25,7 @@
| or any other location as required by the application or its packages. | or any other location as required by the application or its packages.
*/ */
'version' => '20250403', 'version' => '20250311',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------