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

Claim Outstandings List

@can('create_claim_outstanding') @endcan
@include('admin.layouts.message')
@foreach ($claimOutstandings as $rows) @endforeach
Serial Name Claim Amount Insurance Amount Category Claim Number Progress Status
Action
{{ $rows->serial ?? '-' }} {{ Str::limit($rows->name, 50) }} {{ number_format($rows->claim_amount, 2) }} {{ number_format($rows->insurance_amount, 2) }} {{ $rows->insurance_category ?? '-' }} {{ $rows->claim_number ?? '-' }} {{ Str::limit($rows->progress, 30) ?? '-' }}
@if ($rows->status == 1)
Active
@else
InActive
@endif
@can('edit_claim_outstanding') @endcan @can('delete_claim_outstanding')
@method('DELETE') @csrf
@endcan
@endsection @push('styles') @endpush @push('scripts') @endpush