@extends('layouts.dashboard.layout') @section('content')
@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif

Claim Compensation

Add Other Compensation

{{ csrf_field() }}
Recent Compensation
@foreach($claimcomp as $item) @endforeach
Name Amount Notes
Invoice {{ $item['name'] }} ${{ $item['amount'] }} {{ $item['notes'] }}
Total ${{ $comptotal }}
@endsection