@extends('emails.layouts.emailTemplate.master') @section('title', 'New Contact Inquiry') @section('content')

New Contact Inquiry

Received on {{ $inquiry->created_at->format('M d, Y H:i') }}

Company Name
{{ $inquiry->company_name ?? 'N/A' }}
Contact Person
{{ $inquiry->first_name }} {{ $inquiry->last_name ?? '' }}
Email {{ $inquiry->email }}
Phone
{{ $inquiry->phone ?? 'N/A' }}
Preferred Shipment Date
{{ $inquiry->preferred_date ? $inquiry->preferred_date->format('M d, Y') : 'N/A' }}
Message
{{ $inquiry->message ?? 'No message provided.' }}

Submitted: {{ $inquiry->created_at->format('M d, Y H:i') }}

This is an automated message from {{ config('app.name') }}.

@endsection