@extends('back.layouts.app', ['title' => 'SECR']) @section('content')
| First Name | {{ $valuation->first_name }} |
|---|---|
| Last Name | {{ $valuation->last_name }} |
| Company Name | {{ $valuation->company_name }} |
| {{ $valuation->email }} | |
| Phone | {{ $valuation->phone }} |
| Service Needed | {{ $valuation->service_needed }} |
|---|---|
| Number of Assets | {{ $valuation->number_of_assets }} |
| Asset Type | {{ $valuation->asset_type }} |
| Preferred Pickup Date | {{ \Carbon\Carbon::parse($valuation->preferred_pickup_date)->format('M d, Y') }} |
| Additional Details | {{ $valuation->additional_details }} |
Equipment List: {{ $valuation->equipment_list }}
@endif @if ($valuation->product_images) @php $images = is_array($valuation->product_images) ? $valuation->product_images : json_decode($valuation->product_images, true); @endphp @if (!empty($images)) Product Images: @endif @endifSUBMITTED
{{ $valuation->created_at ? $valuation->created_at->format('M d, Y h:i A') : '—' }}
IP ADDRESS
{{ $valuation->ip_address ?? '—' }}
REFERRER
{{ $valuation->referrer }}