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

Explore

Create Token
{{-- Filters --}}
{{-- Grid --}} @if($tokens->isEmpty())
No tokens found. Create the first one.
@else
@foreach($tokens as $token)
{{ $token->name }}
{{ $token->symbol }} @if($token->blockchain) {{ $token->blockchain->name }} @endif @if($token->is_verified) @endif
Price
${{ number_format((float)$token->current_price, 6) }}
MCap
${{ number_format((float)$token->market_cap, 0) }}
24h Vol
${{ number_format((float)$token->volume_24h, 0) }}
Status
{{ $token->status }}
{{ $token->created_at?->diffForHumans() }}
@endforeach
{{ $tokens->links() }}
@endif
@endsection