| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | 
							- <?php
 
- namespace App\Http\Controllers\Front;
 
- use App\Shop\Categories\Repositories\CategoryRepository;
 
- use App\Shop\Categories\Repositories\Interfaces\CategoryRepositoryInterface;
 
- use App\Http\Controllers\Controller;
 
- class CategoryController extends Controller
 
- {
 
-     /**
 
-      * @var CategoryRepositoryInterface
 
-      */
 
-     private $categoryRepo;
 
-     /**
 
-      * CategoryController constructor.
 
-      *
 
-      * @param CategoryRepositoryInterface $categoryRepository
 
-      */
 
-     public function __construct(CategoryRepositoryInterface $categoryRepository)
 
-     {
 
-         $this->categoryRepo = $categoryRepository;
 
-     }
 
-     /**
 
-      * Find the category via the slug
 
-      *
 
-      * @param string $slug
 
-      * @return \App\Shop\Categories\Category
 
-      */
 
-     public function getCategory(string $slug)
 
-     {
 
-         $category = $this->categoryRepo->findCategoryBySlug(['slug' => $slug]);
 
-         $repo = new CategoryRepository($category);
 
-         $products = $repo->findProducts()->where('status', 1)->all();
 
-         return view('front.categories.category', [
 
-             'category' => $category,
 
-             'products' => $repo->paginateArrayResults($products, 20)
 
-         ]);
 
-     }
 
- }
 
 
  |