admin.blade.php 438 B

1234567891011121314151617181920212223
  1. @component('mail::message')
  2. # New Support Message
  3. <br>
  4. @if($contact->response_requested)
  5. **This user has requested a response from you.**
  6. @endif
  7. <br>
  8. [**{{$contact->user->username}}**]({{$contact->user->url()}}) has sent the following message:
  9. @component('mail::panel')
  10. {{ $contact->message }}
  11. @endcomponent
  12. @component('mail::button', ['url' => $contact->adminUrl(), 'color' => 'primary'])
  13. View Message
  14. @endcomponent
  15. @endcomponent