@extends('admin.layouts.layout') @section('content')
| 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
|