{{ __('incomes.title_index') }}

{{ __('incomes.all') }}

@can('create', 'App\Models\Income') {{ __('incomes.create') }} @endcan
@foreach ($incomes as $income) @endforeach
{{ __('incomes.th_source') }} {{ __('incomes.th_amount') }} {{ __('incomes.th_income_category') }} {{ __('incomes.th_income_sub_category') }} {{ __('incomes.th_actions') }}
{{ $income->source }} {{ isset($income->amount) ? number_format($income->amount) : '' }} {{ $income->income_category->name ?? '' }} {{ $income->income_sub_category->name ?? '' }} @can('update', $income)
@endcan @can('delete', $income) @endcan