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

{{__('Email')}}:
{{$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