File #: {{ $assignment->file_no }}

Insurance Information

Company : {{ $assignment->insuranceCompany->company_name ?? '' }} Branch : {{ $assignment->insuranceCompany->branch ?? '' }} Adjuster : {{ $assignment->adjuster->name ?? '' }}
Adjuster Phone : {{ $assignment->adjuster->phone ?? '' }}
Claim Number : {{ $assignment->claim_number ?? '' }} Deductible amount : {{ $assignment->deductible_amount ?? '' }} Policy Number : {{ $assignment->policy_number ?? '' }}
Date of Loss : {{ $assignment->date_of_loss ? date("M d Y", strtotime($assignment->date_of_loss)) : '' }} Assignment Type : {{ $assignment->assignment_type ?? '' }} Type of Loss : {{ $assignment->lossType->loss_type ?? '' }}
Claim For : {{ $assignment->claimfor ?? '' }} Insured Name : {{ $assignment->insured_name ?? '' }}

Owner Information

Business Name : {{ $assignment->business_name ?? '' }} First Name : {{ $assignment->business_first_name ?? '' }} Last Name : {{ $assignment->business_last_name ?? '' }}
Email Address : {{ $assignment->business_email_address ?? '' }} Phone Number (Cell) : {{ $assignment->business_phone_number ?? '' }}
Phone Number (Home) : {{ $assignment->additional_phone_number ?? '' }}
FAX Number : {{ $assignment->business_fax_number ?? '' }}
Contact Name : {{ $assignment->business_contact_name ?? '' }} Address : {{ $assignment->business_street ?? '' }} City : {{ $assignment->business_city ?? '' }}
State : {{ $assignment->businessState->name ?? '' }} Postcode : {{ $assignment->business_postcode ?? '' }}

Location Information

Location : {{ $assignment->vehicle_location ?? '' }} Location Name : {{ $assignment->vehicle_location_name ?? '' }} Location Phone : {{ $assignment->vehicle_phone_number ?? '' }}
Address : {{ $assignment->vehicle_street ?? '' }} City : {{ $assignment->vehicle_city ?? '' }} State : {{ $assignment->vehicleState->name ?? '' }}
Postcode : {{ $assignment->vehicle_postcode ?? '' }}

Vehicle Information

Year : {{ $assignment->vehicles[0]->vehicle_year ?? '' }} Make : {{ $assignment->vehicles[0]->vehicle_make ?? '' }} Model : {{ $assignment->vehicles[0]->vehicle_model ?? '' }}
VIN : {{ $assignment->vehicles[0]->vehicle_vin ?? '' }} Vehicle License Plate : {{ $assignment->vehicles[0]->vehicle_license_plate ?? '' }} Color : {{ $assignment->vehicles[0]->vehicle_color ?? '' }}
Mileage : {{ $assignment->vehicles[0]->vehicle_mileage ?? '' }}
Vehicle Damage : {{ $assignment->vehicles[0]->vehicle_note ?? '' }}

Appraiser Information

Appt Date/Time : {{ $assignment->appointment_date ? date("M d Y h:i:s A", strtotime($assignment->appointment_date)) : '' }} Appraiser Name : {{ $assignment->appraiser->name ?? '' }} Status : {{ $assignment->status->status ?? '' }}
Type of Claim : {{ $assignment->claimType->claim_type ?? '' }} Unit Type : {{ $assignment->unitType->unit_type ?? '' }} Assignment Priority : @if ($assignment->assignment_priority == '1') Standard @elseif ($assignment->assignment_priority == '2') Rush @elseif ($assignment->assignment_priority == '3') Super Rush @elseif ($assignment->assignment_priority == '4') Catastrophic @endif
@auth @if (Auth::user()->role != 4)

@endif @endauth

Instructions

{!! $assignment->instruction ?? '' !!}

Insurance Guidelines

{!! nl2br($assignment->insuranceCompany->insurance_guidelines ?? '') !!}