2024-03-15 01:52:27 +01:00
|
|
|
@component('mail::message')
|
|
|
|
# Hallo {{$fullname}},
|
|
|
|
|
|
|
|
{{ $participant->form->mail_top }}
|
2024-03-24 11:09:56 +01:00
|
|
|
|
|
|
|
# Deine Daten
|
2024-03-15 01:52:27 +01:00
|
|
|
|
|
|
|
@foreach($config->sections as $section)
|
|
|
|
## {{$section->name}}
|
|
|
|
@foreach ($section->fields as $field)
|
|
|
|
* {{$field->name}}: {{$field->presentRaw()}}
|
|
|
|
@endforeach
|
|
|
|
@endforeach
|
|
|
|
|
2024-03-24 11:09:56 +01:00
|
|
|
{{ $participant->form->mail_bottom }}
|
2024-03-15 01:52:27 +01:00
|
|
|
|
|
|
|
@endcomponent
|