@extends('admin::layouts.master') @section('title', __('admin/rma.index')) @section('content')
{{ __('admin/rma.rma_details') }}
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'] }}
{{ __('common.status') }}
{{ $rma['status'] }} {{-- --}} {{ __('admin/rma.update_status') }}
{{ __('admin/rma.operation_history') }}
@foreach ($histories as $history) @endforeach
{{ __('order.history_status') }} {{ __('order.history_comment') }} {{ __('order.history_created_at') }}
{{ $history['status'] }} {{ $history['comment'] }} {{ $history['created_at'] }}
@endsection @push('footer') @endpush