|
{{ $row->item_name }}
|
{{ optional($row->category)->name ?? '—' }}
|
{{ currency_format($row->amount, restaurant()->currency_id) }}
|
@lang('modules.expenses.recurring.rotations.' . $row->rotation)
|
{{ $row->issue_date?->format(dateFormat()) }}
|
{{ $row->next_expense_date ? $row->next_expense_date->format(dateFormat()) : '—' }}
|
$row->status === 'active',
'bg-gray-100 text-gray-800 rounded px-2 py-1 text-xs' =>
$row->status !== 'active',
])>
@lang('modules.expenses.recurring.statuses.' . $row->status)
|
@if (user_can('Update Expense'))
@lang('app.update')
@endif
@if (user_can('Delete Expense'))
@endif
|
@empty