New Quote Request
Hello Admin,
A customer has submitted a new quote request. Please see the details below:
Customer Details
| Name: | {{ $quote->first_name }} {{ $quote->surname }} |
| Phone: | {{ $quote->phone }} |
| Email: | {{ $quote->email }} |
| City: | {{ $quote->city }} |
| State: | {{ $quote->state }} |
| Zipcode: | {{ $quote->postcode }} |
@if($quote->message)
| Message: | {{ $quote->message }} |
@endif
Product Details
| Name: | {{ $quote->product_name }} |
| Price: | {{ $quote->product_price }} |
| URL: | {{ $quote->product_url }} |
@if($quote->product_configuration)
@php
$config = json_decode($quote->product_configuration, true) ?? [];
$chunks = array_chunk($config, 2);
@endphp
| Product Configuration: |
@foreach($chunks as $pair)
@foreach($pair as $item)
|
{{ $item['name'] ?? $item['name'] ?? '' }}:
{{ $item['label'] ?? '' }}
|
@endforeach
@if(count($pair) < 2)
|
@endif
@endforeach
|
@endif
| Link User Requested: | {{ $link }} |
Please follow up with the customer at your earliest convenience.
|