@extends('layouts.portal.layout') @section('content')

Claim Details


Plan Name : {{ $plan }}

Claim Items :
@if($plan == "VIP Protection") @elseif($plan == "YMM Protection") @else @endif @foreach($claimRowItems as $item) @if($plan == "VIP Protection") @elseif($plan == "YMM Protection") @else @endif @if($item['status'] == "Open") @elseif($item['status'] == "Deny") @elseif($item['status'] == "Resolved") @else @endif @endforeach
Item Name Type Photo Description of Damage Date of Purchase Purchase Price MessageDate of Purchase Purchase Price Weight Compensation Amount Status
{{ $item['itme_name'] }} {{ $item['type'] }} {{ $item['description'] }} @if($item['date_of_purchase'] != null) {{date('d-m-Y', strtotime($item['date_of_purchase']))}} @endif {{ $item['purchase_price'] }} {{ $item['message'] }} @if($item['date_of_purchase'] != null) {{date('d-m-Y', strtotime($item['date_of_purchase']))}} @endif {{ $item['purchase_price'] }} {{ $item['oldweight'] }}
@if($item['weight'] != null) ( Adjust Weight : {{ $item['weight'] }} ) @else @endif
{{ $item['oldtotal'] }}
@if($item['total'] != null) ( Adjust Total : {{ $item['total'] }} ) @else @endif
AcceptedRejectedResolvedPending

Claim History


Claim Date Notes Status
{{date('d-m-Y h:i A', strtotime($claim->created_at))}} {{$claim->note}} Pending
@foreach($claimstatus as $stat)
Date Message Status
{{date('d-m-Y h:i A', strtotime($stat->created_at))}} {{$stat->message}} {{$stat->status_name}}
@endforeach

Claim Items History


@foreach($claimItemStatus as $itemstat) @endforeach
Date Item Name Message Status
{{date('d-m-Y h:i A', strtotime($itemstat['date']))}} {{$itemstat['itemname']}} {{$itemstat['message']}} {{$itemstat['status']}}

Claim Other Compensation


@foreach($comp as $itemcom) @endforeach
Date Notes Amount
{{date('d-m-Y h:i A', strtotime($itemcom['created_at']))}} {{$itemcom['notes']}} ${{$itemcom['amount']}}

Queries

{{ csrf_field() }}
Recent Queries
@foreach($claimQuery as $qitem) @endforeach
Date Name Message
{{ date('d-m-Y h:i A', strtotime($qitem['query_date'])) }} {{ $qitem['name'] }} {{ $qitem['message'] }}
@if($claimaccept != null)
Date Message Status
{{date('d-m-Y h:i A', strtotime($claimaccept->created_at))}} {{$claimaccept->message}} Accepted
@endif @if($claimreject != null)
Date Message Status
{{date('d-m-Y h:i A', strtotime($claimreject->created_at))}} {{$claimreject->message}} Resolved
@endif @if($claimresolve != null)
Date Message Price Status
{{date('d-m-Y h:i A', strtotime($claimresolve->created_at))}} {{$claimresolve->message}} {{$claimresolve->price}} Repaired
@endif


@endsection