@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')
@csrf

{{ __('Danh sách tài khoản được chọn') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@php $id = 1; @endphp @foreach ($selectedAccountsInfo as $index => $accountInfo) @php $paymentInterface = payment($accountInfo->bank->name); $paymentInterface->setBankAccount($accountInfo); @endphp @endforeach
{{ __('ID') }} {{ __('Tài khoản chuyển') }} {{ __('transaction_type') }} {{ __('Tài khoản nhận') }} {{ __('Số dư tối thiểu') }}
{{ $accountInfo->id }} {{ $accountInfo->acc_no ?? '' }}
{{ $accountInfo->acc_name ?? '' }}
{{ $accountInfo->username }}
{{ $paymentInterface->getIcon() }}
{{ $paymentInterface->getDisplayName() }}
@endsection @section('scripts') @endsection @section('styles') @endsection