@extends('dashboard.admin.layout') @section('title', 'Manage Deposit Addresses') @section('page_subtitle', 'Active address table first, with address creation moved into a modal.') @section('content')
Active Deposit Addresses

Configure supported deposit wallets from a modal while keeping the address table as the first view.

@forelse($addresses as $address) @empty @endforelse
Asset Network Address Instructions Status Last Updated Actions
{{ $address->asset }} {{ $address->network ?? '-' }} {{ Str::limit($address->address, 20) }} {{ Str::limit($address->instructions, 50) ?? '-' }} @if($address->trashed()) Deleted @else Active @endif {{ $address->updated_at->format('Y-m-d H:i') }} @if(!$address->trashed())
@csrf
@else
@csrf
@endif
No deposit addresses configured yet.
@if($pendingTransactions->count() > 0)
Pending Transactions
{{ $pendingTransactions->count() }} transactions are still awaiting review.
View All Pending
@foreach($pendingTransactions as $tx) @endforeach
Reference User Type Asset Amount Status Date
{{ $tx->reference }} {{ $tx->user->email }} @if($tx->type === 'deposit') Deposit @else Withdrawal @endif {{ $tx->asset }} {{ number_format($tx->amount, 8) }} {{ ucfirst($tx->status) }} {{ $tx->created_at->format('Y-m-d H:i') }}
@endif
@endsection