@extends('lethean::layout') @section('title', 'Block #' . ($block['height'] ?? '')) @section('content')

Block #{{ number_format($block['height'] ?? 0) }}

{{ ($block['is_pos_block'] ?? false) ? 'PoS' : 'PoW' }}
Height {{ number_format($block['height'] ?? 0) }}
Timestamp {{ isset($block['timestamp']) ? date('Y-m-d H:i:s', $block['timestamp']) : 'N/A' }}
Difficulty {{ number_format($block['difficulty'] ?? 0) }}
Reward {{ number_format(($block['reward'] ?? 0) / 1e12, 4) }} LTHN
Hash {{ $block['hash'] ?? 'N/A' }}
Previous @if(!empty($block['prev_hash'])) {{ $block['prev_hash'] }} @else Genesis @endif
@if(($block['height'] ?? 0) > 0) ← Block {{ number_format(($block['height'] ?? 1) - 1) }} @endif Block {{ number_format(($block['height'] ?? 0) + 1) }} → | Explorer
@endsection