#133: Make product name not required
This commit is contained in:
parent
86e48f8e16
commit
389ba0b172
@ -1,5 +1,6 @@
|
||||
# Changelog
|
||||
**2025-03-04**
|
||||
**2025-04-04**
|
||||
- Fixed #133 - Make product name not required
|
||||
- Fixed #125 - 'Add Payment' on LIst Invoice page modal is too wide
|
||||
- Fixed #124 - Reorder button for product services is displayed on wrong side
|
||||
- Fixed #123 - Typo 'Add to product Services'
|
||||
|
@ -153,8 +153,7 @@ public static function form(Form $form): Form
|
||||
TextInput::make('sku')
|
||||
->datalist(OrderProduct::all()->unique('sku')->pluck('sku')->toArray()),
|
||||
TextInput::make('product_name')
|
||||
->datalist(OrderProduct::all()->unique('product_name')->pluck('product_name')->toArray())
|
||||
->required(),
|
||||
->datalist(OrderProduct::all()->unique('product_name')->pluck('product_name')->toArray()),
|
||||
TextInput::make('color')
|
||||
->datalist(OrderProduct::all()->unique('color')->pluck('color')->toArray()),
|
||||
Cluster::make([
|
||||
|
Loading…
x
Reference in New Issue
Block a user