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