@extends('layout.default')
{{ /**@var \App\Models\Block $block*/'' }}
@section('title','Realtime Explorer')
@section('script')
@endsection
@section('content')
@include('element.header')
Realtime Explorer
Recent Blocks
Height |
Age |
# TXs |
@foreach($blocks as $block)
{{ $block->height }} |
{{ \Carbon\Carbon::createFromTimestamp($block->block_time)->diffForHumans() }} |
{{ $block->tx_count }} |
@endforeach
Recent Transactions
Hash |
Time |
Inputs |
Outputs |
Amount |
@foreach($txs AS $tx)
|
{{ $tx->created_at->diffForHumans() }} |
{{ $tx->input_count }} |
{{ $tx->output_count }} |
{{ number_format($tx->value, 8, '.', '') }} LBC |
@endforeach
@endsection