@extends('master.authMaster') @section('content') @php $variable = 'income'; @endphp

Income Ledger

@if ($ledger_summery->isEmpty())

No Income heads data found for this financial year.Please Add Data from Income Screen.

@else @foreach ($ledger_summery as $group) @if (isset($group->head_group_id))

{{ Ucfirst($group->group_name) }}

    @foreach ($group->heads as $head)
  • {{ $head->head_name }} - ₹ {{ $head->head_total ?? 0 }} View Details
  • @endforeach
@endif @endforeach @endif
@endsection