@extends('emails.layouts.emailTemplate.master') @section('title', 'New Booking - ' . $booking->booking_code) @section('content')

New Warehouse Booking Received

A new booking has been submitted by {{ $booking->user->fullname }} ({{ $booking->user->email }}).

Booking Code:
#{{ $booking->booking_code }}
{{ ucfirst(str_replace('_', ' ', $booking->booking_status)) }}

Submitted on: {{ $booking->created_at->format('M d, Y \a\t h:i A') }}

@include('emails.partials.booking-details', ['booking' => $booking, 'forAdmin' => true])

Please review and take necessary action.

Regards,
{{ config('app.name') }} System

@endsection