@extends('layout.default') {{ /**@var \App\Models\Block $block*/'' }} @section('title','Realtime Explorer') @section('script') @endsection @section('content') @include('element.header')

Realtime Explorer

Recent Blocks

@foreach($blocks as $block) @endforeach
Height Age # TXs
{{ $block->height }} {{ \Carbon\Carbon::createFromTimestamp($block->block_time)->diffForHumans() }} {{ $block->tx_count }}

Recent Transactions

@foreach($txs AS $tx) @endforeach
Hash Time Inputs Outputs Amount
{{ $tx->created_at->diffForHumans() }} {{ $tx->input_count }} {{ $tx->output_count }} {{ number_format($tx->value, 8, '.', '') }} LBC
@endsection