@extends('layouts.user') @section('title', 'Lịch sử rút coin') @section('content')
Reset
{{ number_format($withdraws->sum('coins_spent')) }}
Tổng coin đã rút
{{ $withdraws->total() }}
Tổng giao dịch
{{ $withdraws->where('created_at', '>=', now()->startOfMonth())->count() }}
Giao dịch tháng này
@if($withdraws->count() > 0)
@foreach($withdraws as $withdraw) @endforeach
Mã GD Số kim cương Nhân vật Thời gian Trạng thái Thao tác
#{{ $withdraw->id }}
{{ number_format($withdraw->coins_spent) }}
{{ $withdraw->character_name ?? 'N/A' }}
{{ \Carbon\Carbon::parse($withdraw->created_at)->format('d/m/Y') }}
{{ \Carbon\Carbon::parse($withdraw->created_at)->format('H:i:s') }}
Hoàn thành
{{ $withdraws->appends(request()->query())->links('pagination.custom') }}
@else

Chưa có giao dịch rút coin nào

Bạn chưa thực hiện giao dịch rút coin nào. Hãy bắt đầu rút coin để chuyển vào game!

Rút coin ngay
@endif
@endsection