#133: Make product name not required

This commit is contained in:
Nisse Lommerde 2025-04-04 15:09:14 -04:00
parent 86e48f8e16
commit 389ba0b172
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,6 @@
# Changelog # 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 #125 - 'Add Payment' on LIst Invoice page modal is too wide
- Fixed #124 - Reorder button for product services is displayed on wrong side - Fixed #124 - Reorder button for product services is displayed on wrong side
- Fixed #123 - Typo 'Add to product Services' - Fixed #123 - Typo 'Add to product Services'

View File

@ -153,8 +153,7 @@ public static function form(Form $form): Form
TextInput::make('sku') TextInput::make('sku')
->datalist(OrderProduct::all()->unique('sku')->pluck('sku')->toArray()), ->datalist(OrderProduct::all()->unique('sku')->pluck('sku')->toArray()),
TextInput::make('product_name') TextInput::make('product_name')
->datalist(OrderProduct::all()->unique('product_name')->pluck('product_name')->toArray()) ->datalist(OrderProduct::all()->unique('product_name')->pluck('product_name')->toArray()),
->required(),
TextInput::make('color') TextInput::make('color')
->datalist(OrderProduct::all()->unique('color')->pluck('color')->toArray()), ->datalist(OrderProduct::all()->unique('color')->pluck('color')->toArray()),
Cluster::make([ Cluster::make([