@foreach ($expense_transactions as $item) @if (auth()->user()->hasRole('Super Admin')) {{ $item->business->business_name }} @endif {{ $item->payment_account->account_name }} @switch($item->payment_method) @case(1) {{ __('accounting.cash') }} @break @case(2) {{ __('accounting.card') }} @break @case(3) {{ __('accounting.cheque') }} @break @case(4) {{ __('accounting.bank_transfer') }} @break @case(5) {{ __('accounting.other') }} @break @endswitch {{ $item->expense_category->expense_category }} {{ $item->amount }} {{ $item['status'] == 1 ? __('core.active') : __('core.inactive') }} @endforeach