@extends('layout.default') {{ /**@var \App\Models\Address $address*/'' }} @section('title','Address '.$address->address) @section('script') @endsection @section('content') @include('element.header')

LBRY Address

{{ $address->address }}

@if(isset($address->Tag) && strlen(trim($address->Tag)) > 0) @if(strlen(trim($address->TagUrl)) > 0) {{ $address->Tag }} @else {{ $address->Tag }} @endif @endif
lbry:{{ $address->address }}
Balance (LBC)
{{ \App\Helpers\AmountHelper::format($balanceAmount) }}
Received (LBC)
{{ \App\Helpers\AmountHelper::format(($totalReceived) }}
Sent (LBC)
{{ \App\Helpers\AmountHelper::format(($totalSent) }}

Transactions

@if($numRecords > 0) @php($begin = ($currentPage - 1) * $pageLimit + 1) Showing {{ number_format($begin, 0, '', ',') }} - {{ number_format(min($numRecords, ($begin + $pageLimit) - 1), 0, '', ',') }} of {{ number_format($numRecords, 0, '', ',') }} transaction{{ $numRecords == 1 ? '' : 's' }} @endif
@if(count($recentTxs) == 0) @endif @foreach($recentTxs as $tx) @endforeach
Height Transaction Hash Timestamp Confirmations Inputs Outputs Amount
There are no recent transactions to display for this wallet.
@if($tx->height === null)Unconfirmed@else{{ $tx->height }}@endif {{ \DateTime::createFromFormat('U', $tx->transaction_time)->format('d M Y H:i:s') . ' UTC' }} {{ number_format($tx->confirmations, 0, '', ',') }} {{ $tx->input_count }} {{ $tx->output_count }} {{ number_format($tx->credit_amount - $tx->debit_amount, 8, '.', ',') }} LBC
@include('element.pagination') @endsection