@extends('admin.layouts.layout') @section('title')Customer Queries @endsection @section('body')

Query of {{ $query->name }}

Name {{ $query->name }}
Phone {{ $query->phone }}
Email {{ $query->email }}
Interests @if ($query->interests) {{ join(', ', json_decode($query->interests)) }} @endif
Services {{ $query->services }}
Times to Call @if ($query->times_to_call) {{ join(', ', json_decode($query->times_to_call)) }} @endif
Estimated Price $ {{ $query->estimated_price }}
Message {{ $query->message }}
@endsection