1234567891011121314151617181920212223 |
- @component('mail::message')
- # New Support Message
- <br>
- @if($contact->response_requested)
- **This user has requested a response from you.**
- @endif
- <br>
- [**{{$contact->user->username}}**]({{$contact->user->url()}}) has sent the following message:
- @component('mail::panel')
- {{ $contact->message }}
- @endcomponent
- @component('mail::button', ['url' => $contact->adminUrl(), 'color' => 'primary'])
- View Message
- @endcomponent
- @endcomponent
|