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
**2025-03-04**
- Fixed #123 - Typo 'Add to product Services'
**2025-03-11**
- Fixed #122 - Non-admins can see payments

View File

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

View File

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