@extends('layouts.app') @section('title') {{ __('combine_money_setting') }} @endsection @section('setting_combine_money') active @endsection @section('section.header')

{{ __('combine_money_setting') }}

@endsection @section('section.content')
Loading...
Hệ thống đang xử lí, vui lòng chờ.... giây

{{ __('Setup list') }}

@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
@if (count($accountSettings) > 0) @foreach ($accountSettings as $item) @php $bankAccountFrom = \App\Models\Bank\BankAccount::find( $item->bank_account_id_from, ); $bankAccountTo = \App\Models\Bank\BankAccount::find( $item->bank_account_id_to, ); $paymentInterfaceFrom = null; $paymentInterfaceTo = null; if ($bankAccountFrom && $bankAccountFrom->bank) { $paymentInterfaceFrom = payment($bankAccountFrom->bank->name); $paymentInterfaceFrom->setBankAccount($bankAccountFrom); } if ($bankAccountTo && $bankAccountTo->bank) { $paymentInterfaceTo = payment($bankAccountTo->bank->name); $paymentInterfaceTo->setBankAccount($bankAccountTo); } @endphp @endforeach @else @endif
{{ __('ID') }} {{ __('Transfer account') }} {{ __('transaction_type') }} {{ __('Receiving account') }} {{ __('transaction_type') }} {{ __('Minimum balance') }} {{ __('operation') }}
{{ $item->id }} {{ $bankAccountFrom->acc_no ?? '' }}
{{ $bankAccountFrom->acc_name ?? '' }}
{{ $bankAccountFrom->username ?? '' }}
@if ($paymentInterfaceFrom) {!! $paymentInterfaceFrom->getIcon() !!}
{{ $paymentInterfaceFrom->getDisplayName() }} @else N/A @endif
{{ $bankAccountTo->acc_no ?? '' }}
{{ $bankAccountTo->acc_name ?? '' }}
{{ $bankAccountTo->username ?? '' }}
@if ($paymentInterfaceTo) {!! $paymentInterfaceTo->getIcon() !!}
{{ $paymentInterfaceTo->getDisplayName() }} @else N/A @endif
{{ $item->balance_minium }} {{ __('Edit') }}
@csrf @method('DELETE')
Không có dữ liệu
@endsection @section('scripts') @endsection @section('styles') @endsection