@extends('backend.layouts.form') @section('title', __('Complaint-Type')) @section('content')
@csrf
@if(count($complaintTypeList) > 0)
@php $count=0; @endphp @foreach ($complaintTypeList as $key => $complaintType) @php $count++; @endphp @endforeach
{{ __('#') }} {{ __('Title') }} {{ __('Complaint Type') }} {{ __('Created Date') }} {{ __('Action') }}
{{ $key+1 }} {{ $complaintType->title }} {{ $complaintType->type }} {{ vDate($complaintType->created_at) }}
@else @include('backend.includes.empty') @endif @endsection