@extends('admin.layouts.app') @section('title', 'Manage Bookings') @section('content')
| Customer | Vehicle | Service | Date | Status | Payment | Price | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $booking->user->name }}
{{ $booking->user->email }}
|
{{ $booking->vehicle_brand }}
{{ $booking->vehicle_model }}
{{ $booking->vehicle_plate }}
({{ $booking->vehicle_year }})
|
{{ $booking->service_type }} |
{{ $booking->booking_date->format('M d, Y') }}
{{ $booking->booking_time }}
|
{{ ucfirst(str_replace('_', ' ', $booking->status)) }} | {{ ucfirst($booking->payment_status) }} | {{ $booking->total_price ? 'Rp ' . number_format($booking->total_price) : '-' }} | |
| No bookings found. | |||||||