@foreach($incomes as $key => $income)
@endforeach
|
{{ trans('cruds.income.fields.id') }}
|
{{ trans('cruds.income.fields.income_category') }}
|
{{ trans('cruds.income.fields.entry_date') }}
|
{{ trans('cruds.income.fields.amount') }}
|
{{ trans('cruds.income.fields.description') }}
|
|
|
{{ $income->id ?? '' }}
|
{{ $income->income_category->name ?? '' }}
|
{{ $income->entry_date ?? '' }}
|
{{ $income->amount ?? '' }}
|
{{ $income->description ?? '' }}
|
@can('income_show')
{{ trans('global.view') }}
@endcan
@can('income_edit')
{{ trans('global.edit') }}
@endcan
@can('income_delete')
@endcan
|