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

All Claims

@if(Auth::user()->user_type == 'Adjuster' || Auth::user()->user_type == 'Claimant' || Auth::user()->user_type == 'Staff' || Auth::user()->user_type == 'Encoder') Draft @endif @if(Auth::user()->user_type != 'Initial Approver' && Auth::user()->user_type != 'Final Approver') Pending Processing For Approval @endif

{{$statusLabel}}

@if(Auth::user()->user_type != 'Claimant' && Auth::user()->user_type != 'Initial Approver' && Auth::user()->user_type != 'Final Approver') @endif @if(Auth::user()->user_type == 'Initial Approver' || Auth::user()->user_type == 'Final Approver') @endif @if($claims != null) @forelse ($claims as $claim) @if(Auth::user()->user_type != 'Claimant' && Auth::user()->user_type != 'Initial Approver' && Auth::user()->user_type != 'Final Approver') @endif @if(Auth::user()->user_type == 'Initial Approver' || Auth::user()->user_type == 'Final Approver') @endif @empty @endforelse @endif
Claim Details Nature of Claim Adjuster DetailsUser Details For Approval Action
{{ $claim->submitted_at }}
Transaction Code: {{ $claim->arcus_transaction_no }}
Claim No.: {{ strtoupper($claim->claim_no) }}
@if(Auth::user()->user_type== 'Group Manager') Issuing Branch: {{strtoupper($claim->branch_description)}}
@endif 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: {{strtoupper($claim->assured_name)}}
Assure Email: {{$claim->assured_email_address}}
Assured Mobile: +63{{$claim->assured_contact_no}}
Dealership/Repair shop: {{strtoupper($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: {{strtoupper($claim->adjuster_firstname)}} {{strtoupper($claim->adjuster_lastname)}}
Contact No: {{$claim->adjuster_contact_no}}
@endif
User: {{ strtoupper($claim->entry_type) }}
Name: {{ strtoupper($claim->name) }}
Email: {{ $claim->email }}
Documents
@php $claimAttachments = explode(',', $claim->attachments); $countCt= count($claimAttachments); @endphp @for ($i = 0; $i < $countCt;$i++) - {{$claimAttachments[$i]}}
@endfor
@endsection