@extends('admin/layouts/default') {{-- title --}} @section('title') View Offer Request :: @parent @stop {{-- content --}} @section('content')
@include('admin/notifications')
Car Information
Car ID {{ $item->id }}
Car Name {{ $item->car_name }}
Offer Number {{ $item->offer_number }}
Price {{ number_format($item->price, 2, '.', ' ') }}
Contact Information
First Name {{ $item->first_name }}
Last Name {{ $item->last_name }}
Company {{ $item->company }}
Phone {{ $item->phone }}
Email {{ $item->email }}
Street {{ $item->street }}
House Number {{ $item->house_number }}
Zip Code {{ $item->zip_code }}
City {{ $item->city }}
Contact Methods @foreach ($contactMethods as $contactMethod) {{ config('offer-requests.contact-methods')[$contactMethod] }}, @endforeach
Send copy to own email {{ ($item->send_copy_to_own_email == 1 ? 'Yes' : 'No') }}
Additional Information
Additional Information {!! nl2br(e($item->request_additional_information)) !!}
Additional Notes {!! nl2br(e($item->additional_notes)) !!}
System Information
IP {{ $item->ip }}
Date {{ date('d.m.Y H:i:s', strtotime($item->created_at)) }}
@stop @section('scripts') @parent @stop