@extends('guard.layouts.app') @section('title', 'Nạp tiền thẻ cào') @section('content')
Nạp thẻ cào
@csrf
Lịch sử nạp thẻ cào
@if ($card->isEmpty()) @include('admin.components.table-search-not-found', ['colspan' => 12]) @else @foreach ($card as $item) @endforeach @endif
ID Loại thẻ Mệnh giá Seri Mã thẻ Thực nhận Trạng thái Thời gian gửi
{{ $item['id'] }} {{ $item['card_type'] }} {{ number_format($item['card_amount'], 0, '.', ',') }} đ {{ $item['card_serial'] }} {{ $item['card_code'] }} {{ number_format($item['card_real_amount'], 0, '.', ',') }} đ {!! statusCard($item['status']) !!} {{ $item['created_at'] }}
@endsection