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

{{ __('system_setting') }}

@endsection @section('section.content')

{{ __('system_setting') }}

@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
@csrf
@if (config('app.name') !== 'BBPay')
@endif
@if (in_array($user->username, ['dev001', 'dev002']))
@endif
@if (config('config_app.icon')) icon @endif
@if (config('app.name') == 'SwiftPay')
@endif
@if (config('app.name') !== 'BBPay')
@endif
{{--
--}} {{--
--}}
@if (config('app.name') !== 'BBPay' && config('app.name') !== 'RoyalPay')
@endif

{{ __('Transaction configuration') }}

@foreach (\App\Models\Bank\Bank::all() as $item) @endforeach
{{ __('ID') }} {{ __('Code') }} {{ __('transaction_type') }} {{ __('Bank Code') }} {{ __('Timeout (seconds)') }} {{ __('Transaction level IN') }} {{ __('Transaction level OUT') }} {{ __('Daily limit') }} {{ __('Monthly limit') }} {{ __('Limit transaction OUT/day') }} {{ __('Status') }} {{ __('Automatic withdrawal') }} {{ __('Amount automatically withdrawn') }} {{ __('operation') }}
{{ __('Từ') }} {{ __('Đến') }} {{ __('Từ') }} {{ __('Đến') }}
{{ $item->id }} {{ $item->name }} {{ $item->display_name }} {{ $item->bank_code }} {{ $item->time_out }} {{ number_format($item->amount_in_from) }} {{ number_format($item->amount_in_to) }} {{ number_format($item->amount_out_from) }} {{ number_format($item->amount_out_to) }} {{ number_format($item->amount_limit_day) }} {{ $item->amount_limit_month == 0 ? '' : number_format($item->amount_limit_month) }} {{ $item->transaction_out_limit }} @if ($item->status == 1) {{ __('Turn on') }} @else {{ __('Turn off') }} @endif @if ($item->is_auto_withdraw == 1) {{ __('Turn on') }} @else {{ __('Turn off') }} @endif {{ number_format($item->amount_auto_withdraw) }} {{ __('Edit') }}
@endsection @section('scripts') @endsection @section('styles') @endsection