@extends('layout.master') @section('body-class', 'page-account-rmas') @push('header') {{-- --}} @endpush @section('content')
{{ __('shop/account.rma.rma_info.index') }}
{{ $orderProduct->name }}
{{ $orderProduct->price }} x {{ $orderProduct->quantity }}
@foreach ($types as $key => $item) @if ($key == $rma->type)
{{ $item}}
@endif @endforeach
{{ $rma->quantity }}
{{ $rma->status }}
@if ($rma->opened) {{ __('common.yes') }} @else {{ __('common.no') }} @endif
{{ $rma->created_at }}
@foreach ($reasons as $item) @if ($rma->rma_reason_id == $item['id']) {{$item['name']}} @endif @endforeach
{{$rma->comment}}
@endsection @push('add-scripts') @endpush