@extends('dashboard.admin.layouts.app') @section('content')

{{ $title }}

Name
{{ $wallet->name }}
Symbol
{{ $wallet->symbol }}
Address
{{ $wallet->address }}
Network
{{ $wallet->network }}
QR Code
@if ($wallet->qr_code_path) Payment QR Code @else Payment QR Code @endif
Logo
{{ $wallet->name }}
@if ($wallet->balance)
Balance
{{ formatAmount($wallet->balance) }}{{ $wallet->symbol }}
@endif
Status
{{ $wallet->status->label() }}
@if ($wallet->description)
Description
{{ $wallet->description ?? 'N/A' }}
@endif
Created At:
{{ $wallet->created_at->diffForHumans() }}
Updated At:
{{ $wallet->updated_at->diffForHumans() }}
View Edit
@csrf @method('DELETE')
@endsection