@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')]){{ config('app.name') }}@endcomponent
@endslot
{{-- Body --}}
💬 New Chat Request
A visitor has started a chat and is waiting for a response.
@component('mail::panel')
Message:
{{ $message->body }}
@endcomponent
@component('mail::table')
| | |
|:--|:--|
| **Name** | {{ $visitor?->name ?: '—' }} |
| **Email** | {{ $visitor?->email ?: '—' }} |
| **Conversation** | {{ $conversation->chat_id }} |
| **Sent** | {{ $message->created_at->format('d M Y, H:i') }} |
@endcomponent
@component('mail::button', ['url' => url(route('laravel-crm.chat.show', $conversation))])
View Conversation
@endcomponent
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
Powered by Laravel CRM
© {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
@endcomponent
@endslot
@endcomponent