@extends('front.layout') @section('content')

{{ convertUtf8($bs->items_title) }}

  • input('review') == '' ? 'checked' : '' }} id="checkbox4" value="">
  • input('review') == 4 ? 'checked' : '' }} id="checkbox4" value="all">
  • input('review') == 3 ? 'checked' : '' }} id="checkbox4" value="all">
  • input('review') == 2 ? 'checked' : '' }} id="checkbox4" value="all">
  • input('review') == 1 ? 'checked' : '' }} id="checkbox4" value="all">
{{__('Price')}}:
@if ($products->count() > 0) @foreach ($products as $product)
@if ($product->is_special == 1)
{{ __('Special') }}
@endif

{{ $be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : '' }}{{ convertUtf8($product->current_price) }}{{ $be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : '' }} @if (convertUtf8($product->previous_price)) {{ $be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : '' }}{{ convertUtf8($product->previous_price) }}{{ $be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : '' }} @endif

{{ convertUtf8($product->title) }}

{{ convertUtf8(strlen($product->summary)) > 48? convertUtf8(substr($product->summary, 0, 48)) . '...': convertUtf8($product->summary) }}

{{ __('Add To Cart') }}
@endforeach @else

{{ __('Product Not Found') }}

@endif
{{ $products->appends(['minprice' => request()->input('minprice'),'maxprice' => request()->input('maxprice'),'category_id' => request()->input('category_id'),'type' => request()->input('type'),'tag' => request()->input('tag'),'review' => request()->input('review')])->links() }}
@php $maxprice = App\Models\Product::max('current_price'); $minprice = 0; @endphp
{{-- Variation Modal Starts --}} @include('front.partials.variation-modal') {{-- Variation Modal Ends --}} @endsection @section('script') @endsection