Initial commit
This commit is contained in:
19
resources/views/mail/form/submission-notification.blade.php
Normal file
19
resources/views/mail/form/submission-notification.blade.php
Normal file
@@ -0,0 +1,19 @@
|
||||
@component('mail::message')
|
||||
|
||||
Hello there 👋
|
||||
|
||||
Your form "{{$form->title}}" has a new submission.
|
||||
|
||||
@foreach($fields as $field)
|
||||
@if(isset($field['value']))
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
**{{$field['name']}}**
|
||||
|
||||
{!! is_array($field['value'])?implode(',',$field['value']):$field['value']!!}
|
||||
|
||||
@endif
|
||||
@endforeach
|
||||
|
||||
@endcomponent
|
||||
Reference in New Issue
Block a user