รายงาน Timeline การเดินทาง

วันที่ออกรายงาน: {{ date('d/m/Y H:i:s') }}
จำนวนรายการทั้งหมด: {{ count($timelines) }} รายการ
@php $totalDistance = 0; $totalOilCost = 0; @endphp @foreach($timelines as $index => $timeline) @php $totalDistance += $timeline->distance ?? 0; $totalOilCost += $timeline->oil_cost ?? 0; @endphp @endforeach
ลำดับ สมาชิก สถานที่ปัจจุบัน สถานที่จะไป ระยะทาง (กม.) ค่าน้ำมัน (บาท) วันที่ เช็คอิน เช็คเอาท์ สถานะ
{{ $index + 1 }} {{ $timeline->member->name ?? '-' }} {{ $timeline->current_place ?? '-' }} {{ $timeline->target_place ?? '-' }} {{ $timeline->distance ? number_format($timeline->distance, 2) : '-' }} {{ $timeline->oil_cost ? number_format($timeline->oil_cost, 2) : '-' }} {{ $timeline->date ? date('d/m/Y', strtotime($timeline->date)) : '-' }} {{ $timeline->time ? date('H:i', strtotime($timeline->time)) : '-' }} {{ $timeline->checkout_time ? date('H:i', strtotime($timeline->checkout_time)) : '-' }} {{ $timeline->status_request ? $timeline->status_request : '-' }}
รวมทั้งหมด: {{ number_format($totalDistance, 2) }} {{ number_format($totalOilCost, 2) }}
สรุปข้อมูล

ระยะทางรวม: {{ number_format($totalDistance, 2) }} กิโลเมตร
ค่าน้ำมันรวม: {{ number_format($totalOilCost, 2) }} บาท