From 3e4426c68c0676497412cf4dd7cc95f02033d2db Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 23 May 2023 19:20:52 -0700 Subject: [PATCH] Clearer comments Signed-off-by: snipe --- app/Http/Livewire/Importer.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/Http/Livewire/Importer.php b/app/Http/Livewire/Importer.php index 79e760a61..de10fe8da 100644 --- a/app/Http/Livewire/Importer.php +++ b/app/Http/Livewire/Importer.php @@ -216,8 +216,11 @@ class Importer extends Component 'order_number' => trans('general.order_number'), 'notes' => trans('general.notes'), 'image' => trans('general.importer.image_filename'), - // Checkout fields - assets can be checked out to other assets, people, or locations, but we currently - // only support checkout to people and locations in the importer + /** + * Checkout fields: + * Assets can be checked out to other assets, people, or locations, but we currently + * only support checkout to people and locations in the importer + **/ 'checkout_class' => trans('general.importer.checkout_type'), 'first_name' => trans('general.importer.checked_out_to_first_name'), 'last_name' => trans('general.importer.checked_out_to_last_name'),