ECOMMERCE/app/View/Components/FooterBrands.php

30 lines
635 B
PHP

<?php
namespace App\View\Components;
use App\Repositories\Catalog\BrandRepository;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class FooterBrands extends Component
{
public $brands;
/**
* Create a new component instance.
*/
public function __construct(BrandRepository $brandRepository)
{
$this->brands = $brandRepository->getList([]);
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.footer-brands', ['brands' => $this->brands]);
}
}