@extends('backoffice.layouts.app') @push('styles') @endpush @section('content')
{{-- HEADER --}}
Withdraw Pending
Manage pending withdraw transactions
Refresh
{{-- ALERT --}} @include('backoffice.pages.transaction.partials.alert') {{-- SEARCH --}}
@if(!empty($search)) Reset @endif
{{-- TABLE --}}
Pending Withdraw Transactions
Semua transaksi withdraw pending
{{ $transactions->count() }} Pending
@forelse($transactions as $trx) @empty @endforelse
ID TRX ID User Bank Account Amount Status Date
#{{ $trx->id }} {{ $trx->trxid }}
{{ $trx->user?->username ?? '-' }}
ID: {{ $trx->user_id ?? '-' }}
{{ $trx->bank ?? '-' }}
{{ $trx->account_name ?? '-' }}
{{ $trx->account_number ?? '-' }}
Rp {{ number_format((float) $trx->amount, 0, ',', '.') }} Pending {{ optional($trx->created_at)->format('d-m-Y H:i') }}
Tidak ada data withdraw pending
{{-- PAGINATION --}} @include('backoffice.pages.transaction.partials.pagination')
@endsection