@extends('panel.master') @section('title', 'مدیریت شکایات') @section('content')

مدیریت شکایات

لیست شکایات

@foreach($complaints as $complaint) @endforeach
# نام مشتری شماره موبایل شماره فاکتور نوع شکایت تاریخ ثبت وضعیت عملیات
{{ $loop->iteration }} {{ $complaint->fullname }} {{ $complaint->phone }} {{ $complaint->invoice_number }} @switch($complaint->type) @case('general') عمومی @break @case('broken') شکستنی @break @case('service') خدمات @break @case('other') سایر @break @endswitch {{ jdate($complaint->created_at)->format('Y/m/d H:i') }}
@csrf @method('DELETE')
@foreach($complaints as $complaint) @endforeach @endsection @section('extrajs') @endsection @section('extraCss') @endsection