@extends('layouts.admin') @section('title', 'Dashboard') @section('topbar-content')
@endsection @section('content')| Coin | Total held by users |
|---|---|
| {{ $row->asset->symbol }} | {{ rtrim(rtrim($row->total, '0'), '.') }} |
| No balances yet. | |
| Reference | User | Amount |
|---|---|---|
| {{ $tx->reference }} | {{ $tx->user?->name ?: $tx->user?->email ?: 'User #'.$tx->user_id }} | {{ rtrim(rtrim($tx->amount, '0'), '.') }} {{ $tx->asset->symbol }} |
| No transactions yet. | ||