Initial commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
@component('mail::message')
|
||||
|
||||
{!! $form->notification_body !!}
|
||||
|
||||
|
||||
@if($form->notifications_include_submission)
|
||||
As a reminder, here are your answers:
|
||||
|
||||
@foreach($fields as $field)
|
||||
@if(isset($field['value']))
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
**{{$field['name']}}**
|
||||
|
||||
{!! is_array($field['value'])?implode(',',$field['value']):$field['value']!!}
|
||||
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
<p style="text-align:center"><small>You are receiving this email because you answered the form: <a href="{{url("forms/".$form->slug)}}">"{{$form->title}}"</a>.</small></p>
|
||||
|
||||
@endcomponent
|
||||
Reference in New Issue
Block a user