@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@if (Session::has('error'))
{{ Session::get('error') }}
@endif
| {{ __('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') }} |
@foreach (\App\Models\Bank\Bank::all() as $item)
| {{ $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') }}
|
@endforeach
@endsection
@section('scripts')
@endsection
@section('styles')
@endsection