| {{ __('General.Order') }} | {{ translate('Photo') }} | {{translate('Name') }} | {{ __('Order.Qty') }} | {{ __('Product.Attributes') }} | {{ __('Order.Price') }} | {{ __('Order.Total') }} | {{ __('Order.seller_status') }} |
|---|---|---|---|---|---|---|---|
| {{ $refundRequest->order->code }} |
@if ($refundRequest->orderProduct->product != null)
@php
$link = getProductFirstPhotoOrAvatar($refundRequest->orderProduct->product->id);
@endphp
|
@if ($refundRequest->orderProduct->product != null) {{ $refundRequest->orderProduct->product->{'title_' . App::getLocale()} }} @endif | {{ $refundRequest->orderProduct->quantity }} |
@if ($refundRequest->orderProduct->serialized_options)
@isset(json_decode($refundRequest->orderProduct->serialized_options)->color)
@endisset @forelse (json_decode($refundRequest->orderProduct->serialized_options)->choices as $key => $item) {{ \App\Attribute::find($item->parentId)->{'title_' . App::getLocale()} }} : {{ \App\AttributOption::find($item->id)->{'title_' . App::getLocale()} }} @empty @endforelse @else @endif |
{{ single_price($refundRequest->orderProduct->price / $refundRequest->orderProduct->quantity) }} {{ currency_sympol()['symbol'] }} | {{ single_price($refundRequest->orderProduct->price) }} {{ currency_sympol()['symbol'] }} |