@extends('layouts.admin') @section('title', 'Dashboard Admin') @section('page_title', 'Dashboard') @section('breadcrumb') @endsection @push('css') @endpush @section('content')

{{ $total }}

Total Pengaduan

{{ $pending }}

Pending

{{ $proses }}

Diproses

{{ $selesai }}

Selesai

Data Pengaduan

@forelse($complaints as $item) @empty @endforelse
Nama Tanggal Kategori Deskripsi Lokasi Gambar Status Aksi
{{ $item->nama }} {{ date('d-m-Y H:i', strtotime($item->created_at)) }} @php $cat = $categories->firstWhere('slug', $item->kategori); @endphp @if($cat) @endif {{ $item->kategori }} {{ $item->deskripsi }} @if($item->latitude && $item->longitude) Lihat @else - @endif @if($item->gambar) @php $ext = pathinfo($item->gambar, PATHINFO_EXTENSION); @endphp @if(in_array(strtolower($ext), ['jpg','jpeg','png','gif','webp','svg'])) @else @endif @else - @endif {{ $item->status == 'tolak' ? 'Ditolak' : ucfirst($item->status) }}
Belum ada pengaduan
@endsection @push('js') @endpush