@component('mail::message') # New website enquiry **{{ $enquiry->name }}** submitted the enquiry form. @component('mail::table') | | | |:--|:--| | **Enquiry type** | {{ $enquiry->topic->label() }} | | **Email** | {{ $enquiry->email }} | | **Phone** | {{ $enquiry->phone ?? '—' }} | @if ($enquiry->property) | **Property** | {{ $enquiry->property->title }} | @endif | **Received** | {{ $enquiry->created_at?->format('j M Y, H:i') }} | @endcomponent ## Message {{ $enquiry->message }} @if ($enquiry->property) @component('mail::button', ['url' => $enquiry->property->url ?? url('/property/'.$enquiry->property->slug)]) View the listing @endcomponent @endif @component('mail::button', ['url' => url('/admin/enquiries')]) Open the enquiry inbox @endcomponent Reply directly to this email to answer {{ $enquiry->name }}. @endcomponent