@extends('tenant.settings.accounting.accounting-settings-tabs') @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.accounting_settings') => route('tenant.settings.accounting.taxes.index', ['type' => 'taxes']), __('breadcrumb.e_wallets') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'settings.accounting.ewallet-accounts']) @endsection @section('accounting-settings-content') @php $ewallet_parent_id = App\Models\Accounting\Account::where('account_type', 'ewallets')->first()->id; @endphp
{{-- EWallets Section --}}

@lang('settings/accounting/ewallet-accounts.accounting_ewallet')

{{-- Create new ewallet modal --}} {{-- Ewallets table --}}
@foreach ($ewallets as $ewalletAccount) @php $ewallet_data = $ewalletAccount->ewallet_data; $formId = 'ewalletAccountForm' . $ewalletAccount->id; @endphp @endforeach
# @lang('settings/accounting/ewallet-accounts.account_from_tree') @lang('settings/accounting/ewallet-accounts.account_owner_name') @lang('settings/accounting/ewallet-accounts.select_account') @lang('settings/accounting/ewallet-accounts.procedures')
{{ $loop->iteration }}
@csrf @method('PUT')
{{ $ewalletAccount->name }} @can('accountingSettings-ewalletAccounts-edit') @endcan
@endsection @push('script') @endpush