@if (isset($data) && $data)
@t('Previous selection')
@t('Product') |
@t('Qty') |
@t('Price') |
@foreach ($data->OrdersItem as $key => $value)
{{ $value->Product->name }}
|
{{ $value->qty }}
|
@if ($value->actual_price)
{{ amount($value->Product->price, ['Currency' => oa($data->Currency)]) }}
@elseif ($value->price)
{{ amount($value->Product->price, ['Currency' => oa($data->Currency)]) }}
@endif
|
@endforeach
@endif
@t('%s Products', $products_title)
@include('Plugins/Payment/Views/Elements/Order/products', ['edit' => true])