#123: Typo 'Add to product Services'
This commit is contained in:
parent
320fc0cc98
commit
01f602f8d6
@ -1,4 +1,6 @@
|
|||||||
# 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
|
||||||
|
@ -145,6 +145,10 @@ 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()),
|
||||||
@ -180,14 +184,12 @@ 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([
|
||||||
|
@ -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' => '20250311',
|
'version' => '20250403',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user