{{-- resources/views/dashboard/markets.blade.php --}} @extends('layouts.user') @section('title', 'Markets') @section('content')
| # | Symbol | Orders Count | Total Order Value | Action |
|---|---|---|---|---|
| {{ $loop->iteration }} | {{ strtoupper(substr($symbol->symbol,0,2)) }} {{ $symbol->symbol }} | {{ $symbol->orders_count }} | ${{ number_format((float)$symbol->total_value,2) }} | Trade |
| No market activity found for your account yet. | ||||