@extends('layouts.main') @section('content') {{--Notification modal--}} {{--Address modal--}}
CHECKOUT
@if(count($pendingcart) > 0)

@if(count($addresses) > 0)
@foreach($addresses as $i => $item)

{{ $item->firstname . " " . $item->lastname }} - {{$item->phone}}

{{$item->address}}, {{$item->state_name}}, {{$item->city_name}}


@endforeach
@endif
Add Shipping address

Please fill the form below to add a shipping address

@endif
Your order details

Product

Price (Total)


@foreach($pendingcart as $item)

{{$item->qty}}x {{$item->name}} @if($item->attrib)
( {{rtrim(trim($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

@endforeach

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
@if($table != "")
@endif @endsection @push('style') @endpush @push('script')