@extends('admin::layouts.master')
@section('title', __('admin/rma.index'))
@section('content')
| ID: |
{{ $rma['id'] }} |
| {{ __('admin/rma.customers_name') }}: |
{{ $rma['name'] }} |
| {{ __('common.phone') }}: |
{{ $rma['telephone'] }} |
| {{ __('admin/builder.modules_product') }}: |
{{ $rma['product_name'] }} |
| {{ __('product.sku') }}: |
{{ $rma['sku'] }} |
| {{ __('admin/rma.quantity') }}: |
{{ $rma['quantity'] }} |
| {{ __('admin/rma.reasons_return') }}: |
{{ $rma['reason'] }} |
{{ $rma['status'] }}
{{--
--}}
{{ __('admin/rma.update_status') }}
| {{ __('order.history_status') }} |
{{ __('order.history_comment') }} |
{{ __('order.history_created_at') }} |
@foreach ($histories as $history)
| {{ $history['status'] }} |
{{ $history['comment'] }} |
{{ $history['created_at'] }} |
@endforeach
@endsection
@push('footer')
@endpush