@extends('mails.layout.app') @section('main')

New Inquiry Received

You have received a new inquiry. Details below:

{{-- Full Name and Email side by side --}}
Full Name:
{{ $inquiry['fullName'] }}
Email:
{{ $inquiry['email'] }}
{{-- Phone and Age side by side --}}
Phone:
{{ $inquiry['phone'] }}
Age:
{{ $inquiry['age'] }}
{{-- Inquiry ID and Created At side by side --}}
Inquiry ID:
#{{ $inquiry['_id'] }}
Submitted At:
{{ date('F j, Y, g:i a', $inquiry['created_at']) }}
Address:
{{ $inquiry['address'] }}
{{-- Message at the last (full width) --}}
Message:
{{ $inquiry['message'] }}
@endsection