@extends('admin::layouts.master') @section('title', __('admin/rma.index')) @section('content')
{{ __('admin/rma.rma_list_title') }}
@if (count($rmas))
@if (count($rmas_format)) @foreach ($rmas_format as $rma) @endforeach @else @endif
{{ __('admin/rma.customers_name') }} {{ __('common.email') }} {{ __('common.phone') }} {{ __('admin/builder.modules_product') }} {{ __('product.sku') }} {{ __('admin/rma.quantity') }} {{ __('admin/rma.service_type') }} {{ __('common.status') }} {{ __('common.action') }}
{{ $rma['name'] }} {{ $rma['email'] }} {{ $rma['telephone'] }} {{ $rma['product_name'] }} {{ $rma['sku'] }} {{ $rma['quantity'] }} {{ $rma['type'] }} {{ $rma['status'] }} {{ __('common.view') }}
{{ $rmas->links('admin::vendor/pagination/bootstrap-4') }} @else @endif
@endsection