| {{ __('Product') }} | {{ __('Price') }} | {{ __('Quantity') }} | {{ __('Discount') }} | {{ __('Total') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
|
{{ $item['name'] }}
@if($item['customer_answers'])
@foreach($item['customer_answers'] as $answer)
@endif
{{ $answer }}
@endforeach
|
{{ config('app.currency_symbol') }}{{ money($item['price']) }} |
|
@if($item['discount'] > 0) -{{ config('app.currency_symbol') }}{{ money($item['discount']) }} @else - @endif | {{ config('app.currency_symbol') }}{{ money($item['price'] * $item['qty'] - ($item['discount'] ?? 0)) }} |
{{ __('Add products to your cart to get started') }}
{{ __('Start Shopping') }}