From 01f602f8d6df0e4f3748f983ee948fccd554e662 Mon Sep 17 00:00:00 2001
From: Nisse Lommerde <nisselommerde@gmail.com>
Date: Thu, 3 Apr 2025 11:51:58 -0400
Subject: [PATCH] #123: Typo 'Add to product Services'

---
 README.md                                      |  2 ++
 app/Filament/Admin/Resources/OrderResource.php | 10 ++++++----
 config/app.php                                 |  2 +-
 3 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index a14114e..d9f20e3 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,6 @@
 # Changelog
+**2025-03-04**
+- Fixed #123 - Typo 'Add to product Services'
 
 **2025-03-11**
 - Fixed #122 - Non-admins can see payments
diff --git a/app/Filament/Admin/Resources/OrderResource.php b/app/Filament/Admin/Resources/OrderResource.php
index aa42251..5b009bf 100644
--- a/app/Filament/Admin/Resources/OrderResource.php
+++ b/app/Filament/Admin/Resources/OrderResource.php
@@ -145,6 +145,10 @@ public static function form(Form $form): Form
 
             TableRepeater::make('order_products')
                 ->label('Garments')
+                ->addActionLabel('Add new garment')
+                ->reorderable()
+                ->cloneable()
+                ->defaultItems(1)
                 ->schema([
                     TextInput::make('sku')
                         ->datalist(OrderProduct::all()->unique('sku')->pluck('sku')->toArray()),
@@ -180,14 +184,12 @@ public static function form(Form $form): Form
                             ->rules('numeric'),
                     ])
                         ->label('Sizes'),
-                ])
-                ->reorderable()
-                ->cloneable()
-                ->defaultItems(1),
+                ]),
 
             Repeater::make('services')
                 ->view('filament.forms.compact-repeater')
                 ->label('Product Services')
+                ->addActionLabel('Add new product service')
                 ->schema([
                     Grid::make(19)
                         ->schema([
diff --git a/config/app.php b/config/app.php
index 2a6b4b4..b27af5d 100644
--- a/config/app.php
+++ b/config/app.php
@@ -25,7 +25,7 @@
     | or any other location as required by the application or its packages.
     */
 
-    'version' => '20250311',
+    'version' => '20250403',
 
     /*
     |--------------------------------------------------------------------------