@extends('frontend.frontend-page-master') @section('page-title') {{__('Category:')}} {{$category_name}} @endsection @section('site-title') {{__('Category:')}} {{$category_name}} @endsection @section('page-meta-data') @endsection @section('content')
@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
@endsection @include('frontend.partials.ajax-addtocart')