@if (isset($data) && $data)

@t('Previous selection')

@foreach ($data->OrdersItem as $key => $value) @endforeach
@t('Product') @t('Qty') @t('Price')
{{ $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
@endif

@t('%s Products', $products_title)

@include('Plugins/Payment/Views/Elements/Order/products', ['edit' => true])