@extends('lethean::layout') @section('title', 'Block #' . ($block['height'] ?? '')) @section('content')
| 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
|