From 1f9942f08ac4baecbff0b415f34ce228b72db54f Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Tue, 17 Mar 2026 16:56:32 +0500 Subject: [PATCH] wip --- app/Repositories/Ecommerce/Collection/CollectionRepository.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Repositories/Ecommerce/Collection/CollectionRepository.php b/app/Repositories/Ecommerce/Collection/CollectionRepository.php index 89f7d80..c1c1ea5 100644 --- a/app/Repositories/Ecommerce/Collection/CollectionRepository.php +++ b/app/Repositories/Ecommerce/Collection/CollectionRepository.php @@ -14,4 +14,5 @@ class CollectionRepository public static function values(): array|Collection { return CollectionModel::where('is_visible', true)->pluck('name', 'id'); + } }