@extends('crm.master') @section('title', 'Daily Manifest - ' . $date->format('M j, Y')) @section('content')
Bookings for {{ $date->format('l, F j, Y') }}
| Booking Code | Start Date/Time | End Date/Time | Assigned Assets | Payment | Status | Check In / Out | Discount Code | Booker | Note |
|---|---|---|---|---|---|---|---|---|---|
| {{ $booking->booking_number }} |
{{ $booking->start_datetime->format('m/d/y') }}
{{ $booking->start_datetime->format('h:i A') }}
|
{{ $booking->end_datetime->format('m/d/y') }}
{{ $booking->end_datetime->format('h:i A') }}
|
— |
${{ number_format($booking->total_amount, 2) }}
@if($balance > 0)
Due: ${{ number_format($balance, 2) }}
@else
Paid
@endif
|
{{ $booking->status_label }} | @if($canCheckIn) @elseif($canCheckOut) @else — @endif | {{ $booking->discount_code ?: '-' }} |
{{ $booking->customer_name }}
@if($booking->customer_email)
@endif
|
@if($booking->is_wedding) Wedding @if($noteText) {{ \Illuminate\Support\Str::limit($noteText, 80) }} @endif @elseif($noteText) {{ \Illuminate\Support\Str::limit($noteText, 80) }} @else — @endif |