@csrf
@lang('global.category') | @lang('global.quantity') | @lang('global.unit_price') | @lang('global.total_price') |
---|---|---|---|
{{ $item['title'][$locale] }} | {{ $item['quantity'] }} | @if ($item['price'] == 0) @lang('global.without_fees') @else {{ $item['price'] }} @endif | @if ($item['price'] == 0) @lang('global.without_fees') @else {{ number_format($item['price'] * $item['quantity'], 2) }} @endif |
@lang('global.total') | {{ Cart::total_price(true) }} | |
@lang('global.discount') | 0.00 | |
@lang('global.tip') | 0.00 | |
@lang('global.total_amount') | @if (Cart::total_price() == 0)@lang('global.without_fees') | @else{{ Cart::total_price(true) }} | @endif
@lang('global.all_prices_include_vat')
@endif