@extends('layouts.app') @section('title', $token->name . ' (' . $token->symbol . ')') @section('content')
{{-- Header --}}

{{ $token->name }}

{{ $token->symbol }} @if($token->is_verified) Verified @endif {{ $token->status }}
@if($token->blockchain) {{ $token->blockchain->name }} @endif @if($token->contract_address) {{ Str::limit($token->contract_address, 12, '…') }} @if($token->explorer_url) Explorer ↗ @endif @endif
{{-- Main column --}}
{{-- Stats --}}
Price
${{ number_format((float)$token->current_price, 8) }}
Market Cap
${{ number_format((float)$token->market_cap, 0) }}
Liquidity
${{ number_format((float)$token->liquidity, 0) }}
24h Volume
${{ number_format((float)$token->volume_24h, 0) }}
{{-- Chart placeholder --}}
Price chart (Stage 8 – chart library + /api/tokens/{id}/chart)
{{-- Description & socials --}}

About

{{ $token->description ?: 'No description provided.' }}

@if($token->socials)
@if($token->socials->website) Website @endif @if($token->socials->twitter) X/Twitter @endif @if($token->socials->telegram) Telegram @endif @if($token->socials->discord) Discord @endif
@endif
{{-- Recent transactions --}}

Recent transactions

@if($recentTx->isEmpty())

No transactions yet.

@else
@foreach($recentTx as $tx) @endforeach
Type Amount Status Time
{{ $tx->type }} {{ number_format((float)$tx->amount, 4) }} {{ $tx->status }} {{ $tx->created_at?->diffForHumans() }}
@endif
{{-- Side panel --}}
@if($token->status === 'launched') @else
Trading available after the token is launched and confirmed on-chain.
@endif {{-- Report --}} @auth

Report token

@csrf
@endauth {{-- Info --}}

Token info

Creator {{ $token->user?->name ?? '—' }}
Holders {{ number_format($token->holders_count) }}
Total supply {{ number_format((float)$token->total_supply, 0) }}
Decimals {{ $token->decimals }}
Launched {{ $token->launched_at?->toDateString() ?? '—' }}
@if($token->deployment_tx_hash)
Deploy tx
{{ $token->deployment_tx_hash }}
@endif
{{-- Risk --}}

Risk warning

This token is not verified as safe. Smart contracts can contain bugs or malicious logic. Liquidity can be removed. Never invest more than you can afford to lose. LaunchMint does not guarantee any token’s safety or value.

@endsection