@php $version = $basicInfo->theme_version; @endphp @extends('frontend.layout') @section('pageHeading') @if (!empty($pageHeading)) {{ $pageHeading->products_page_title }} @endif @endsection @section('metaKeywords') @if (!empty($seoInfo)) {{ $seoInfo->meta_keyword_products }} @endif @endsection @section('metaDescription') @if (!empty($seoInfo)) {{ $seoInfo->meta_description_products }} @endif @endsection @section('style') @endsection @section('content') @includeIf('frontend.partials.breadcrumb', [ 'breadcrumb' => $bgImg->breadcrumb, 'title' => !empty($pageHeading) ? $pageHeading->products_page_title : __('Products'), ])
@includeIf('frontend.shop.side-bar')
{{ $total_products }} {{ $total_products > 1 ? __('Products') : __('Product') }} {{ __('Found') }}
  • @if (!empty(request()->input('category'))) @endif @if (!empty(request()->input('min'))) @endif @if (!empty(request()->input('max'))) @endif
@foreach ($products as $product)
{{ $product->title }}
{{ strlen($product->title) > 50 ? mb_substr($product->title, 0, 50, 'UTF-8') . '...' : $product->title }}
{{ symbolPrice($product->current_price) }}
@if (!empty($product->previous_price)) {{ symbolPrice($product->previous_price) }} @endif
@endforeach
@if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif
@endsection @section('script') @endsection