Claim Details
| Claim Date |
Notes |
Status |
|
{{date('d-m-Y h:i A', strtotime($claim->created_at))}} |
{{$claim->note}} |
{{$claim->status}} |
Claim Images
@foreach($claimImg as $img)
 }})
@endforeach
Plan Name : {{ $plan }}
Claim Items :
| Id |
Item Name |
Type |
Photo |
Description of Damage |
Plan Price |
@if($plan == "VIP Protection")
Date of Purchase |
Purchase Price |
Message |
@elseif($plan == "YMM Protection")
Date of Purchase |
Purchase Price |
Amount |
@else
Make |
Model |
Weight |
Compensation Amount
|
@endif
Status |
@foreach($claimRowItems as $item)
| {{ $item['id'] }} |
{{ $item['itme_name'] }} |
{{ $item['type'] }} |
 }}) |
{{ $item['description'] }} |
{{ $item['plan_price'] }} |
@if($plan == "VIP Protection")
@if($item['date_of_purchase'] != null)
{{date('d-m-Y', strtotime($item['date_of_purchase']))}}
@endif
|
{{ $item['purchase_price'] }} |
{{ $item['message'] }} |
@elseif($plan == "YMM Protection")
@if($item['date_of_purchase'] != null)
{{date('d-m-Y', strtotime($item['date_of_purchase']))}}
@endif
|
{{ $item['purchase_price'] }} |
{{ $item['amount'] }} |
@else
{{ $item['make'] }} |
{{ $item['model'] }} |
{{ $item['oldweight'] }}
@if($item['weight'] != null)
( Adjust Weight : {{ $item['weight'] }} )
@else
@endif
|
{{ $item['oldtotal'] }}
@if($item['total'] != null)
( Adjust Total : {{ $item['total'] }} )
@else
@endif
|
@endif
@if($item['status'] == "Open")
Accepted |
@elseif($item['status'] == "Deny")
Rejected |
@elseif($item['status'] == "Resolved")
Resolved |
@else
Pending |
@endif
@endforeach
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
| Date |
Item Name |
Message |
Status |
@foreach($claimItemStatus as $itemstat)
|
{{date('d-m-Y h:i A', strtotime($itemstat['date']))}} |
{{$itemstat['itemname']}} |
{{$itemstat['message']}} |
{{$itemstat['status']}} |
@endforeach
Claim Other Compensation
| Date |
Notes |
Amount |
@foreach($comp as $itemcom)
|
{{date('d-m-Y h:i A', strtotime($itemcom['created_at']))}} |
{{$itemcom['notes']}} |
${{$itemcom['amount']}} |
@endforeach
| Date |
Name |
Message |
@foreach($claimQuery as $qitem)
|
{{ date('d-m-Y h:i A', strtotime($qitem['query_date'])) }}
|
{{ $qitem['name'] }} |
{{ $qitem['message'] }} |
@endforeach
@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