@extends('layouts.app') @section('title', 'Lịch sử giao dịch | GreenCard.vn') @section('content')
@include('partials.dash-sidebar')
@forelse($orders as $order)
{{ $order->type === 'buy_card' ? '🎫' : '🎮' }} {{ $order->product }}
{{ $order->detail }} · SL: {{ $order->quantity }}
{{ number_format($order->amount, 0, ',', '.') }}đ
{{ ['pending' => 'Đang xử lý', 'success' => 'Thành công', 'failed' => 'Thất bại', 'refunded' => 'Hoàn tiền'][$order->status] ?? $order->status }}
{{ $order->created_at->format('d/m/Y H:i') }}
@empty
@endforelse
@endsection