@extends('layouts.app') @section('title', 'Income Entry') @section('content')

Income Entries

Add Income
Total Income for filtered period: Tk {{ number_format($totalAmount, 2) }}
@forelse($incomes as $income) @empty @endforelse
Date Project Voucher No Received From Method Amount Status Actions
{{ $income->entry_date->format('d M, Y') }} {{ $income->project->project_name ?? 'N/A' }} {{ $income->voucher_no }} {{ $income->received_from }} {{ $income->payment_method }} Tk {{ number_format($income->amount, 2) }} @if($income->approval_status === 'approved') Approved @elseif($income->approval_status === 'pending') Pending @else Rejected @endif @if($income->approval_status !== 'approved') Edit
@csrf @method('DELETE')
@else Locked @endif
No income entries found.
{{ $incomes->links() }}
@endsection