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

{{ __('Lịch sử lệnh rút tiền') }}

@endsection @section('section.content')
@php $tableBodyStyle = $isDemoAccount ? 'display: none;' : ''; @endphp
@csrf
{{ __('transaction_type') }}
{{ __('status') }}
{{ __('Loại thao tác') }}
{{ __('from_date') }}
{{ __('to_date') }}
{{ __('account') }}
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif

{{ __('Lịch sử tạo lệnh rút tiền') }}

Tổng giao dịch/ngày: {{ \App\Models\History\HistoryWithdraw::getTotalTransactions() }}
Tổng tiền đã rút/ngày: {{ number_format(\App\Models\History\HistoryWithdraw::getTotalAmountToday()) }}
Tổng tiền phí/ngày: {{ number_format(\App\Models\History\HistoryWithdraw::getTotalFeeDay()) }}
{{ __('ID') }} {{ __('Loại') }} {{ __('account') }} {{ __('Bank') }} {{ __('amount') }} {{ __('fee') }} {{ __('ID Giao dịch') }} {{ __('Loại thao tác') }} {{ __('status') }} {{ __('content') }} {{ __('Người tạo lệnh') }} {{ __('time') }}
@endsection @section('scripts') @endsection @section('styles') @endsection