From 80191a2e463b3650755beffd04d314a7abfba9a3 Mon Sep 17 00:00:00 2001 From: ro Date: Tue, 1 Oct 2024 11:39:55 -0600 Subject: [PATCH] commented out old decription reference in loc repo there was a reference to storing descriptions in the database that no longer has a corresponding table since it was changed just commenting it out for now because it will be implemented again at a later date --- app/Repositories/LocationRepository.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Repositories/LocationRepository.php b/app/Repositories/LocationRepository.php index 47227d9..771ed0d 100644 --- a/app/Repositories/LocationRepository.php +++ b/app/Repositories/LocationRepository.php @@ -76,8 +76,8 @@ class LocationRepository $location->images = json_encode($images); } - $location->name = $request->name; - $location->description = $request->description; + $location->name = $request->name; + //$location->description = $request->description; $location->archive_links = $request->archive_links; $result = [];