@extends('admin.layouts.admin') @section('title', 'Tiếp thị liên kết') @section('content')
ĐƠN RÚT TIỀN CẦN DUYỆT
@foreach($withdraws as $withdraw) @endforeach
ID Người yêu cầu Thông tin Trạng thái Ngày tạo
{{ $withdraw->id }} {{ $withdraw->user->username }}
  • Số tiền: {{ number_format($withdraw->amount) }} VND
  • STK: {{ $withdraw->account_number }}
  • CTK: {{ $withdraw->account_name }}
  • Ngân hàng: {{ $withdraw->bank_name }}
@if ($withdraw->status == 'pending')

Chờ xử lý

@csrf

@elseif($withdraw->status == 'success') Thành công @endif
{{ $withdraw->created_at->format('d/m/Y H:i') }}
@endsection @section('script') @endsection