@extends('frontend.frontend-page-master') @section('site-title') {{get_static_option('product_page_'.$user_select_lang_slug.'_name')}} @endsection @section('page-title') {{get_static_option('product_page_'.$user_select_lang_slug.'_name')}} @endsection @section('page-meta-data') @endsection @section('breadcrumb')
  • {{get_static_option('product_page_'.$user_select_lang_slug.'_name')}}
  • @endsection @section('content')
    @if(count($all_products) > 0) @foreach($all_products as $data)
    {!! render_image_markup_by_attachment_id($data->image,'','grid') !!}
    @if(!empty($data->badge)) {{$data->badge}} @endif

    {{$data->title}}

    @if(count($data->ratings) > 0)

    ({{count($data->ratings)}})

    @endif
    {{amount_with_currency_symbol($data->sale_price)}} @if(!empty($data->regular_price)){{amount_with_currency_symbol($data->regular_price)}}@endif
    @if($data->stock_status == 'out_stock')
    {{__('Out Of Stock')}}
    @else {{get_static_option('product_add_to_cart_button_'.$user_select_lang_slug.'_text')}} @endif
    @endforeach @else
    {{__('No Products Found')}}
    @endif

    {{get_static_option('product_category_'.$user_select_lang_slug.'_text')}}

    {{get_static_option('product_price_filter_'.$user_select_lang_slug.'_text')}}

    {{amount_with_currency_symbol($min_price)}} {{amount_with_currency_symbol($max_price)}}

    {{get_static_option('product_rating_filter_'.$user_select_lang_slug.'_text')}}

    @endsection @section('style') @endsection @section('scripts') @endsection