Files
opnform-host-nginx/resources/views/mail/form/submission-notification.blade.php
Julien Nahum f8e6cd4dd6 Initial commit
2022-09-20 21:59:52 +02:00

20 lines
375 B
PHP

@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