PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
src
/
Supports
<?php namespace Botble\Ecommerce\Supports; use Botble\Base\Enums\BaseStatusEnum; use Botble\Ecommerce\Repositories\Eloquent\ProductAttributeSetRepository; use Botble\Ecommerce\Repositories\Interfaces\ProductAttributeSetInterface; use Throwable; class RenderProductAttributeSetsOnSearchPageSupport { /** * @var ProductAttributeSetRepository */ protected $productAttributeSetRepository; /** * RenderProductAttributeSetsOnSearchPageSupport constructor. * @param ProductAttributeSetInterface $productAttributeSetRepository */ public function __construct(ProductAttributeSetInterface $productAttributeSetRepository) { $this->productAttributeSetRepository = $productAttributeSetRepository; } /** * @param array $params * @return string * @throws Throwable */ public function render(array $params = []) { $params = array_merge(['view' => 'plugins/ecommerce::themes.attributes.attributes-filter-renderer'], $params); $with = ['attributes']; if (is_plugin_active('language-advanced')) { $with[] = 'attributes.translations'; } $attributeSets = $this->productAttributeSetRepository ->advancedGet([ 'condition' => [ 'status' => BaseStatusEnum::PUBLISHED, 'is_searchable' => 1, ], 'order_by' => [ 'order' => 'ASC', ], 'with' => $with, ]); return view($params['view'], compact('attributeSets'))->render(); } }
[-] RenderProductAttributeSetsOnSearchPageSupport.php
[edit]
[+]
..
[-] EcommerceHelper.php
[edit]
[-] RenderProductSwatchesSupport.php
[edit]
[-] OrderHelper.php
[edit]
[-] DiscountSupport.php
[edit]
[-] FlashSaleSupport.php
[edit]
[-] CurrencySupport.php
[edit]