@extends('layouts.template') @section('content')

All Claims

@if(Auth::user()->user_type=='Group Manager')
Pending Initially Approved Approved For Clarification
@elseif(Auth::user()->user_type=='Claims Head')
Initially Approved Approved For Clarification
@elseif(Auth::user()->user_type=='Initial Approver')
Pending Initially Approved Approved For Clarification
@else
Initially Approved Approved For Clarification
@endif

{{ucwords($statusLabel)}}

@forelse ($claims as $claim) @empty @endforelse
Claim Details Nature of Claim Adjuster Action
{{ $claim->submitted_at }}
Transaction Code: {{ $claim->arcus_transaction_no }}
Claim No.: {{$claim->claim_no}}
Policy No.: {{$claim->policy_no}}
Inception Date: {{date('M d, Y',strtotime($claim->inception_date))}}
Expiry Date: {{date('M d, Y',strtotime($claim->expiry_date))}}
Assured Name: {{ucwords($claim->assured_name)}}
Assure Email: {{$claim->assured_email_address}}
Assured Mobile: +63{{$claim->assured_contact_no}}
Dealership/Repair shop: {{ucwords($claim->dealership_name)}}
{{$claim->policy_type_desc}}
@php $claimTypes = explode(',', $claim->ClaimTypes); $countCt= count($claimTypes); @endphp @for ($i = 0; $i < $countCt;$i++) - {{$claimTypes[$i]}}
@endfor
@if($claim->adjuster_id == 0) No assigned Adjuster @else Name: {{ucwords($claim->adjuster_firstname)}} {{ucwords($claim->adjuster_lastname)}}
Contact No: {{$claim->adjuster_contact_no}}
@endif
@endsection