@extends('frontend.main') @section('content')

My Cart

{{----}}

Cart Item(s)

@if($checkcount != 0)
@foreach($cartItems as $cartItem) @endforeach @if(country()->currency_code =='NPR') @else @endif
Name Price Quantity
{{ $cartItem->name}} {{ get_local_currency_prefix() }} {{ get_local_currency($cartItem->price) }} {{ $cartItem->qty }} {{-- {!! Form::close() !!} --}}
{{csrf_field()}} {{method_field('DELETE')}}
Tax: {{ get_local_currency_prefix() }}{{get_local_currency(Cart::tax())}} Sub Total: {{ get_local_currency_prefix() }}{{get_local_currency(Cart::subtotal())}}Tax: {{ get_local_currency_prefix() }}{{get_local_currency(str_replace(',', '',Cart::tax()))}} Sub Total: {{ get_local_currency_prefix() }}{{get_local_currency(str_replace(',', '',Cart::subtotal()))}}
Total: {{ get_local_currency_prefix() }}{{get_local_currency(str_replace(',', '',Cart::total()))}} Items: {{Cart::count()}}
@if(Auth::guest()) Send Query @else Send Query {{--Checkout--}} @endif @else

No items in Cart.

@endif
@endsection @push('scripts') {{----}} {{----}} @endpush