@extends('layouts.admin.app') @section('title', 'Quản lý booking') @section('content') @php $tripStatusLabels = [ 'open' => 'Mở bán', 'closed' => 'Đóng bán', 'completed' => 'Hoàn thành', 'cancelled' => 'Đã hủy', ]; @endphp
Tổng chuyến trong ngày
{{ number_format((int) ($stats['total_trips'] ?? 0)) }}
Tổng booking trong ngày
{{ number_format((int) ($stats['total_bookings'] ?? 0)) }}
Tổng doanh thu trong ngày
{{ number_format((float) ($stats['total_revenue'] ?? 0)) }}đ
| Ngày/Giờ chạy | Tuyến | Xe | {{-- [TEMPORARILY HIDDEN: Cột Giá vé] --}} {{--Giá vé | --}} {{-- [END HIDDEN] --}}Trạng thái | Tác vụ |
|---|---|---|---|---|---|
|
{{ $item->trip_date?->format('d/m/Y') }} {{ $item->depart_at?->format('H:i') }} - {{ $item->arrive_at?->format('H:i') }} |
{{ $item->route?->code }} {{ $item->route?->fromStation?->name }} - {{ $item->route?->toStation?->name }} |
{{ $item->vehicle?->name }} | {{-- [TEMPORARILY HIDDEN: Hiển thị giá vé]{{ number_format($item->price) }}đ | [END HIDDEN] --}}{{ $tripStatusLabels[$item->status] ?? $item->status }} | Xem chi tiết |
| Không có dữ liệu | |||||