fix matrix input email format issue (#562)
This commit is contained in:
parent
6769da6e10
commit
2c70ed090e
|
|
@ -16,7 +16,11 @@ Your form "{{$form->title}}" has a new submission.
|
|||
<a href="{{$link['signed_url']}}">{{$link['label']}}</a> <br/>
|
||||
@endforeach
|
||||
@else
|
||||
{!! is_array($field['value'])?implode(',',$field['value']):nl2br(e($field['value']))!!}
|
||||
@if($field['type'] == 'matrix')
|
||||
{!! nl2br(e($field['value'])) !!}
|
||||
@else
|
||||
{!! is_array($field['value'])?implode(',',$field['value']):$field['value']!!}
|
||||
@endif
|
||||
@endif
|
||||
@endif
|
||||
@endforeach
|
||||
|
|
|
|||
Loading…
Reference in New Issue