@extends('layouts.app') @section('title', 'LaunchMint') @section('content')

Launch Your Token

Create and discover community-powered tokens. Fair launches, transparent trading, real on-chain confirmation.

Trending

View all →
@if($trending->isEmpty())

No launched tokens yet.

@else
@foreach($trending as $token)
{{ $token->name }}
{{ $token->symbol }}
${{ number_format((float)$token->current_price, 6) }} ${{ number_format((float)$token->volume_24h, 0) }} vol
@endforeach
@endif

Recently launched

@forelse($recent as $token) @empty @endforelse
Token Price Market Cap Volume Status Age
{{ $token->name }} {{ $token->symbol }} ${{ number_format((float)$token->current_price, 6) }} ${{ number_format((float)$token->market_cap, 0) }} ${{ number_format((float)$token->volume_24h, 0) }} {{ $token->status }} {{ $token->created_at?->diffForHumans() }}
No tokens yet. Create one.
@endsection