@extends('crm.master') @section('title', 'Booking Daily List - ' . $date->format('M j, Y')) @php $queryWithoutView = request()->except('view'); @endphp @section('content')
View bookings by product, time, and daily summary totals.
| Product | Inventory Consumed | Bookings | Total Quantity | Total |
|---|---|---|---|---|
|
{{ $row->product_name }}
{{ $row->category_name ?: 'Uncategorized' }}
|
@if(!is_null($row->consumed_percentage))
{{ $row->total_quantity }}/{{ $row->inventory_amount }}
|
{{ $row->bookings_count }} | {{ $row->total_quantity }} | ${{ number_format($row->total_amount, 2) }} |
| No summary data for this day. | ||||
| ID | Booker | Start Time | End Time | Total Quantity | Total | Status | Note | |
|---|---|---|---|---|---|---|---|---|
| {{ $booking->booking_number }} | {{ $booking->customer_name }} | {{ $booking->start_datetime->format('h:i A') }} | {{ $booking->end_datetime->format('h:i A') }} | {{ $booking->customer_email }} | {{ $entry['quantity'] }} | ${{ number_format($entry['amount'], 2) }} | {{ $booking->status_label }} | {{ $noteText ? \Illuminate\Support\Str::limit($noteText, 60) : '-' }} |
| ID | Booker | Start Time | End Time | Total Quantity | Total | Status | Note | |
|---|---|---|---|---|---|---|---|---|
| {{ $booking->booking_number }} | {{ $booking->customer_name }} | {{ $booking->start_datetime->format('m/d/y h:i A') }} | {{ $booking->end_datetime->format('m/d/y h:i A') }} | {{ $booking->customer_email }} | {{ $entry['quantity'] }} | ${{ number_format($entry['amount'], 2) }} | {{ $booking->status_label }} | {{ $noteText ? \Illuminate\Support\Str::limit($noteText, 60) : '-' }} |