From 389ba0b1727f3751bdaf8966dcc546028b91d34a Mon Sep 17 00:00:00 2001 From: nisse Date: Fri, 4 Apr 2025 15:09:14 -0400 Subject: [PATCH] #133: Make product name not required --- README.md | 3 ++- app/Filament/Admin/Resources/OrderResource.php | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 19f5113..dafde79 100644 --- a/README.md +++ b/README.md @@ -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' diff --git a/app/Filament/Admin/Resources/OrderResource.php b/app/Filament/Admin/Resources/OrderResource.php index 5b009bf..904d542 100644 --- a/app/Filament/Admin/Resources/OrderResource.php +++ b/app/Filament/Admin/Resources/OrderResource.php @@ -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([