|
@if (auth()->user()->hasRole('Super Admin'))
{{ $item->business->business_name }} |
@endif
{{ $item['account_name'] }} |
{{ $item['note'] }} |
{{ $item->paymentAccountType ? $item['paymentAccountType']['account_type'] : '' }}
|
{{ $item['account_no'] }} |
{{-- Hidden text for export --}}
{{ $item['status'] == 1 ? __('core.active') : __('core.inactive') }}
{{-- Toggle icon visible only in UI --}}
|
@if (auth()->user()->can('accounting.payment_account.account_book'))
@endif
@if (auth()->user()->can('accounting.payment_account.fund_transfer'))
@endif
@if (auth()->user()->can('accounting.payment_account.deposite'))
@endif
@if (auth()->user()->can('accounting.payment_account.update'))
@endif
@if (auth()->user()->can('accounting.payment_account.delete'))
@endif
|
@endforeach