@extends('components.admin-layout') @section('content')

Pending Withdrawal

{{-- search will enter here --}}
Creator
Type
Transaction id
Amount
{{--
proof
--}}
Created At
Action
@foreach ($transactions as $tnx)
{{ $tnx->creator }}
{{ $tnx->type }}
${{ $tnx->tnxId }}
${{ number_format($tnx->amount, 2, '.', ',') }}
{{--
proof of payment
--}}
{{ date('d M,Y', strtotime($tnx->createdAt)) }}
{{-- modal --}}
@endforeach
@if ($transactions->count() < 1) @endif
{{--
{{ $users->links() }}
--}}
{{ $transactions->links() }}
@endsection