@extends('admin.layouts.index')
@section('title')
Pengaduan
{{ $action }}
@endsection
@section('breadcrumb')
Daftar Pengaduan
{{ $action }}
@endsection
@section('content')
@include('admin.layouts.components.notifikasi')
-
{{ tgl_indo($pengaduan->created_at) }}
-
{{ $pengaduan->created_at->format('H:i') }}
{{ $pengaduan->isi }}
@if ($pengaduan->foto)
-
@endif
@if (count($pengaduan->child) > 0)
@foreach ($pengaduan->child as $item)
-
{{ tgl_indo($item->created_at) }}
-
{{ $item->created_at->format('H:i') }}
{{ $item->isi }}
@endforeach
@endif
-
@endsection