@extends('layouts.app') @section('title') {{ __('combine_money_setting') }} @endsection @section('setting_combine_money') active @endsection @section('section.header') {{ __('combine_money_setting') }} {{ __('combine_money_setting') }} {{ __('setting') }} @endsection @section('section.content') @csrf {{ __('Danh sách tài khoản được chọn') }} {{ __('Lưu cài đặt') }} @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif {{ __('ID') }} {{ __('Tài khoản chuyển') }} {{ __('transaction_type') }} {{ __('Tài khoản nhận') }} {{ __('Số dư tối thiểu') }} @php $id = 1; @endphp @foreach ($selectedAccountsInfo as $index => $accountInfo) @php $paymentInterface = payment($accountInfo->bank->name); $paymentInterface->setBankAccount($accountInfo); @endphp {{ $accountInfo->id }} {{ $accountInfo->acc_no ?? '' }} {{ $accountInfo->acc_name ?? '' }} {{ $accountInfo->username }} {{ $paymentInterface->getIcon() }} {{ $paymentInterface->getDisplayName() }} @foreach ($accountReceivings as $item) @php $paymentInterface = payment($item->bank->name); $paymentInterface->setBankAccount($item); @endphp {{ $item->acc_no }} - {{ $item->acc_name }} - {{ $paymentInterface->getDisplayName() }} @endforeach @endforeach @endsection @section('scripts') @endsection @section('styles') @endsection