@extends('layouts.app') @section('title', 'Đổi thẻ cào | GreenCard.vn') @section('content')
@include('partials.exchange-form', ['showNotice' => true]) {{-- Lịch sử giao dịch --}}

Lịch sử giao dịch

@forelse($history as $row)
{{ $row->telco }} Serial: {{ $row->serial }} {{ number_format($row->amount, 0, ',', '.') }}đ {{ ['pending' => 'Đang xử lý', 'success' => 'Thành công', 'failed' => 'Thất bại'][$row->status] ?? $row->status }} {{ $row->created_at->format('d/m/Y H:i') }}
@empty
Chưa có giao dịch nào.
@endforelse
@endsection