@extends('guard.layouts.app') @section('title', 'Rút Tiền') @section('content')
Yêu Cầu Rút Tiền
@csrf
Số tiền có thể rút: từ {{number_format(siteValue('min_withdraw_ref'))}} ₫ đến {{number_format(siteValue('max_withdraw_ref'))}} ₫

Số dư có thể rút của bạn là: {{ number_format(Auth::user()->referral_money ?? 0) ?: '0đ' }}

Lịch sử rút tiền
@foreach($withdraws as $withdraw) @endforeach
ID Số Tiền Ngân Hàng Tài Khoản Chủ Tài Khoản Trạng Thái Ngày tạo
{{ $withdraw->id }} {{ number_format($withdraw->amount) }} ₫ {{ $withdraw->bank_name }} {{ $withdraw->account_number }} {{ $withdraw->account_name }} @if ($withdraw->status == 'pending') Chờ xử lý @elseif($withdraw->status == 'success') Thành công @endif {{ $withdraw->created_at }}
{{ $withdraws->appends(request()->all())->links('pagination::bootstrap-4') }}
@endsection @section('script') @endsection