| {{ __('Product') }} | {{ __('variation') }} | {{ __('Option') }} | {{ __('Price') }} | {{ __('Quantity') }} | {{ __('Total') }} | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| × |
|
{{ $row->name }} |
@foreach ($row->options->attribute as $attribute)
{{ $attribute->attribute->name }} : {{ $attribute->variation->name }} @endforeach |
@foreach ($row->options->options as $op)
{{ $op->name }} @endforeach |
{{ amount_format($row->price) }} | {{ $row->qty }} | {{ amount_format($row->price*$row->qty) }} | ||||
|
|
|||||||||||
{{ __('Cart totals') }}
| {{ __('Price Total') }} | {{ amount_format(Cart::priceTotal()) }} |
|---|---|
| {{ __('Discount') }} | - {{ amount_format(Cart::discount()) }} |
| {{ __('Tax') }} | {{ amount_format(Cart::tax()) }} |
| {{ __('Subtotal') }} | {{ amount_format(Cart::subtotal()) }} |
| {{ __('Total') }} | {{ amount_format(Cart::total()) }} |