@lang('front.products') ({{$products->total()}})
@if($products->count()>0)
@foreach($products as $getProduct)
@endforeach
@else
{{trans('front.NoDataProduct')}}
@endif
@if(@$getProduct->discount != 0)
{{@$getProduct->discount}}%
@endif
{{@$getProduct->price}} {{$getProduct->discount}} % @endif
{{$getProduct->item_name}}
@if(@$getProduct->discount != 0) {{@$getProduct->price_after_discount}} @else {{@$getProduct->price}} @endif {{trans('front.KD')}}
@if(@$getProduct->discount != 0){{@$getProduct->price}} {{$getProduct->discount}} % @endif
- {{trans('front.Add-to-fave')}} @if($getProduct->quantity != 0)
- {{trans('front.Add-to-cart')}} @else
- {{trans('front.out_of_stock')}} @endif
-
@if($products->count()>0)
{{$products->appends(\Request::except('_token'))->render()}}