@extends('admin.layout') @section('title', 'Kiểm tra giao dịch') @section('heading', 'Kiểm tra giao dịch') @section('content')

Đơn nạp game & mua thẻ

@php $types = ['all' => 'Tất cả loại', 'topup_game' => 'Nạp game', 'buy_card' => 'Mua thẻ']; @endphp @foreach(['all' => 'Tất cả', 'pending' => 'Chờ xử lý', 'success' => 'Thành công', 'failed' => 'Thất bại'] as $k => $label) {{ $label }} @endforeach
@forelse($orders as $o) @empty @endforelse
IDLoạiSản phẩmChi tiếtKháchSố tiềnTiền ảoThanh toánTrạng thái
#{{ $o->id }} {{ $o->type === 'topup_game' ? 'Nạp game' : 'Mua thẻ' }} {{ $o->product }} {{ $o->detail }} {{ $o->user->name ?? 'Khách' }} {{ number_format($o->amount, 0, ',', '.') }}đ {{ $o->virtual_amount ? number_format($o->virtual_amount).' '.$o->virtual_currency : '—' }} {{ strtoupper($o->payment_method) }} @include('admin.partials.status', ['status' => $o->status]) Kiểm tra
Không có giao dịch phù hợp.
{{ $orders->links() }}
@endsection