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

{{ __('Cài đặt thứ tự ưu tiên tài khoản') }}

@endsection @section('section.content')
@csrf

{{ __('Danh sách tài khoản auto đang on') }}

@foreach ($bankAccounts as $bankAccount) @php $paymentInterface = payment($bankAccount->bank->name); $paymentInterface->setBankAccount($bankAccount); @endphp @endforeach
{{ __('ID') }} {{ __('type') }} {{ __('account') }} {{ __('Thứ tự ưu tiên') }}
{{ $paymentInterface->getIcon() }}
{{ $paymentInterface->getDisplayName() }}
{{ $bankAccount->acc_no ?? '' }}
{{ $bankAccount->acc_name ?? '' }}
{{ $bankAccount->username }}
@csrf

{{ __('Danh sách tài khoản thủ công đang on') }}

@foreach ($bankManualAccounts as $bankManualAccount) @endforeach
{{ __('ID') }} {{ __('type') }} {{ __('account') }} {{ __('Thứ tự ưu tiên') }}
{{ $bankManualAccount->type }} {{ $bankManualAccount->acc_no ?? '' }}
{{ $bankManualAccount->acc_name ?? '' }}
@endsection @section('scripts') @endsection @section('styles') @endsection