@extends('layouts.frontend') @section('styles') @endsection @section('content')
@if($reports->count())
{{ $date }} Download Excel
@foreach($reports as $report) @endforeach
Year Month Date Hour Mobil Truk Motor Sepeda Crowd Pencurian JPO Created At
{{ $report->year }} {{ \App\Models\Report::MONTH_SELECT[$report->month] }} {{ $report->date }} {{ str_pad($report->hour, 2, '0', STR_PAD_LEFT) }} {{ json_decode($report->attributes)->car_count ?? '-' }} {{ json_decode($report->attributes)->truck_count ?? '-' }} {{ json_decode($report->attributes)->motorcycle_count ?? '-' }} {{ json_decode($report->attributes)->bicycle_count ?? '-' }} {{ json_decode($report->attributes)->crowd ?? '-' }} {{ json_decode($report->attributes)->pencurian_jpo ?? '-' }} {{ $report->created_at }}
@endif
@endsection