@extends('backend.layouts.app') @section('title') All Complain List @endsection @push('style') @endpush @section('content')
All Complain List
@foreach ($complains as $index => $complain) is_read == 0) style="background: rgba(128, 128, 128, 0.144)" @endif> @endforeach
# Created At Name Subject Complain Actions
{{ $index + 1 }} {{ $complain->created_at->diffForHumans() }} {{ $complain->name }} {{ $complain->subject }} {{ Str::words($complain->complain, 40, '...') }}
@csrf @method('DELETE')
{{ $complains->links() }}
@endsection @push('script') @endpush