@extends('admin::layouts.admin') @section('title', 'Detail Wallet') @section('content')
{{-- Page Header --}} {{-- Wallet Detail Card --}}
{{-- Card Header with Gradient --}}
Informasi Wallet
{{-- Card Body --}}
{{-- Wallet Icon --}}
@if($wallet->logo)
{{ $wallet->name }}
@else
@endif

{{ $wallet->name }}

@if($wallet->status == 'active') Aktif @else Tidak Aktif @endif
{{-- Wallet Info Grid --}}

{{ $wallet->name }}

{{ $wallet->users_count ?? 0 }} Pengguna

@if($wallet->description)

{{ $wallet->description }}

@endif @if($wallet->api_key)
{{ $wallet->api_key }}
@endif @if($wallet->secret_key)
{{ str_repeat('•', 40) }}
@endif

{{ $wallet->created_at->format('d F Y, H:i') }}

{{-- Recent Users Section --}} @if(isset($recentUsers) && $recentUsers->count() > 0)

Pengguna Terbaru

@foreach($recentUsers as $userWallet)
{{ Str::limit($userWallet->wallet_address, 20, '...') }}
@endforeach
@endif
{{-- Card Footer --}}
{{-- Delete Confirmation Modal --}}

Hapus Wallet?

Apakah Anda yakin ingin menghapus wallet ? Tindakan ini tidak dapat dibatalkan.

@csrf @method('DELETE')
@endsection