@extends('layouts.client') @section('title', 'Markets') @section('main_class', 'client-main--markets') @section('content')

Web3 Derp Markets

Track real-time crypto, commodities, and metals prices

Coins Commodities Metals
@forelse($markets as $market) @empty @endforelse
Name Symbol Last Price (USD) 24h Change Holdings P/L % Actions
@include('partials.crypto-logo', ['symbol' => $market->symbol, 'name' => $market->name, 'size' => 28, 'class' => 'market-name-cell__logo']) {{ $market->name }} {{ $market->displaySymbol() }} ${{ $market->formattedPrice() }} @php $change = (float) $market->change_24h; @endphp {{ $change >= 0 ? '+' : '' }}{{ number_format($change, 2) }}% 0.0000
No markets in this category yet.
@endsection