@extends('layouts.store.app') @section('pageTitle', trans('store.shoppingCart')) @section('content') @include('store.partials.common.breadcrumb')
@if(count($cartItems)>=1)
@if(session('can_view_prices')) @endif @if(session('can_view_prices')) @endif @include('store.partials.cart.cartItem')
  @lang('store.product')@lang('store.price')@lang('store.quantity')@lang('store.total') @lang('store.total_tax')@lang('store.remove')
{{-- --}} {{--
--}} {{-- --}} {{--
--}}
{{--
--}}
{{--
--}}
@if(session('can_view_prices')) @include('store.partials.cart.miniCartFooterMsg') @endif
@lang('store.cartTotals')
@if(session('can_view_prices')) @endif
@lang('store.productsCount') {{count(session()->get('cartItems', []))}}
@lang('store.totalQty') {{collect(session()->get('cartItems', []))->sum('emp_qty')}}
@lang('store.total') {{number_format(collect(session()->get('cartItems', []))->sum('total'), 2)}} @lang('store.sar')
@lang('store.total_tax') {{number_format(collect(session()->get('cartItems', []))->sum('total_tax'), 2)}} @lang('store.sar')
@lang('store.proceedToCheckOut')
@else

@lang('site.no_data_found')

@endif
@endsection