From 529310c93a5bb27c6eb4be08330055c9bd3ed502 Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Thu, 15 Feb 2024 12:41:31 -0800 Subject: [PATCH] fixed typo in comment --- app/Http/Controllers/LabelsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/LabelsController.php b/app/Http/Controllers/LabelsController.php index f68e38a42..3a8ff4faf 100755 --- a/app/Http/Controllers/LabelsController.php +++ b/app/Http/Controllers/LabelsController.php @@ -75,7 +75,7 @@ class LabelsController extends Controller $exampleAsset->model->category->name = trans('admin/labels/table.example_category'); } - //turns a multidimensional array in an associative array + //turns a multidimensional array into an associative array $field_selections = collect($data)->mapWithKeys(function ($item) { return $item; })->toArray();