@extends('layouts.main') @section('content') {{--Notification modal--}} {{--Address modal--}}

Your order details

@foreach($pendingcart as $item) @endforeach
Product Price (Total)
{{$item->qty}} × {{$item->name}} @if($item->attrib) ( {{$item->attrib->value}} ) @endif @if(Auth::check()) @if(Auth::user()->currency->is_currency_fixed == '1') {{ transform_product_price($item->price,1)}} @else {{ transform_product_price($item->price, Auth::user()->currency->rate)}} {{Auth::user()->currency->currency}} @endif @endif
Subtotal @if(Auth::check()) @if(Auth::user()->currency->is_currency_fixed == '1') {{number_format($pendingcartsum[0], 0, '.', ',')}} @else {{ transform_product_price($pendingcartsum[0], Auth::user()->currency->rate)}} {{Auth::user()->currency->currency}} @endif @endif
Delivery __
Grand Total @if(Auth::check()) @if(Auth::user()->currency->is_currency_fixed == '1') __ @else __ {{Auth::user()->currency->currency}} @endif @endif
@endsection @push('style') @endpush @push('script')