From 9858cc5baf4a8efe9014683207af860841866dbd Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 18 Jul 2024 04:43:30 +0100 Subject: [PATCH] Removed debugging Signed-off-by: snipe --- app/Models/Accessory.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/Models/Accessory.php b/app/Models/Accessory.php index 51f07fba18..e8fd85d8a6 100755 --- a/app/Models/Accessory.php +++ b/app/Models/Accessory.php @@ -356,13 +356,8 @@ class Accessory extends SnipeModel public function numRemaining() { $checkedout = $this->numCheckedOut(); - \Log::debug('checked out: '.$checkedout); - $total = $this->qty; - \Log::debug('total: '.$total); - $remaining = $total - $checkedout; - \Log::debug('remaining: '.$remaining); return $remaining; }