@extends('client.layouts.client') @section('title', 'Nạp tiền thẻ cào') @section('content')
{{-- Thông báo --}} @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif {{-- Chuyển tab --}} {{-- Form nạp thẻ --}}
@csrf
@error('card_type')
{{ $message }}
@enderror
@error('card_value')
{{ $message }}
@enderror
@error('card_code')
{{ $message }}
@enderror
@error('card_seri')
{{ $message }}
@enderror
{{-- Lịch sử nạp --}}
LỊCH SỬ NẠP THẺ CÀO
@forelse ($card as $item) @empty @include('admin.components.table-search-not-found', ['colspan' => 8]) @endforelse
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']) }} đ {{ $item['card_serial'] }} {{ $item['card_code'] }} {{ number_format($item['card_real_amount']) }} đ {!! statusCard($item['status']) !!} {{ $item['created_at'] }}
{{ $card->appends(request()->all())->links('pagination::bootstrap-4') }}
@endsection