Details
Name:
{{convertUtf8($quote->name)}}

Email:
{{convertUtf8($quote->email)}}

@php $fields = json_decode($quote->fields, true); @endphp @foreach ($fields as $key => $field)
{{str_replace("_"," ",$key)}}:
@if (is_array($field) && array_key_exists('value', $field) && is_array($field['value'])) @php $str = implode(", ", $field['value']); @endphp {{$str}} @else @if(is_array($field)) @if (array_key_exists('type', $field) && $field['type'] == 5) Download @else @if (array_key_exists('value', $field)) {{$field['value']}} @endif @endif @endif @endif

@endforeach
Status:
@if ($quote->status == 0) Pending @elseif ($quote->status == 1) Processing @elseif ($quote->status == 2) Completed @elseif ($quote->status == 3) Rejected @endif