@extends('layouts.master') @section('content')
Income List
@can('accounting-finance.income.create') @endcan
@php $sn = 0; @endphp @foreach($incomes as $income) @endforeach
ID Title Invoice No Head Amount Date Note Attachment Payment method Actions
{{ ++$sn }} {{ $income->title }} {{ $income->invoice_no }} {{ $incomeHeads[$income->accounting_head_id] }} {{ $income->amount }} {{ $income->income_date }} {{ $income->description }} @if ($income->attachment) Attachment @else N/A @endif {{ $income->payment_method ?? "N/A"}} @can('accounting-finance.income.edit') @endcan @can('accounting-finance.income.delete')
@csrf @method('DELETE')
@endcan
@endsection @section('scripts') @endsection