| Name | Price | Quantity | |||
|---|---|---|---|---|---|
| {{ $cartItem->name}} | {{ get_local_currency_prefix() }} {{ get_local_currency($cartItem->price) }} | {{ $cartItem->qty }} | {{-- {!! Form::close() !!} --}} | ||
| @if(country()->currency_code =='NPR') | Tax: {{ get_local_currency_prefix() }}{{get_local_currency(Cart::tax())}} | Sub Total: {{ get_local_currency_prefix() }}{{get_local_currency(Cart::subtotal())}} | @elseTax: {{ get_local_currency_prefix() }}{{get_local_currency(str_replace(',', '',Cart::tax()))}} | Sub Total: {{ get_local_currency_prefix() }}{{get_local_currency(str_replace(',', '',Cart::subtotal()))}} | @endif|
| Total: {{ get_local_currency_prefix() }}{{get_local_currency(str_replace(',', '',Cart::total()))}} | Items: {{Cart::count()}} |