Compare commits
1 Commits
01f602f8d6
...
ea4f46f96d
Author | SHA1 | Date | |
---|---|---|---|
ea4f46f96d |
@ -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
|
||||||
|
@ -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([
|
||||||
|
@ -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',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user