@extends('dashboard.admin.layouts.app') @section('content')

{{ $title }}

@foreach ($markets as $market) @endforeach
# Asset Rate Price High Low Volume Action
{{ $loop->iteration }} {{ $market->asset }} {{ $market->rate }} {{ formatAmount($market->price) }} {{ $market->high }} {{ $market->low }} {{ $market->volume }} View Edit
@csrf @method('DELETE')
@foreach ($markets as $market)
Asset: {{ $market->asset }}

Rate: {{ $market->rate }}

Price: {{ formatAmount($market->price) }}

High: {{ $market->high }}

Low: {{ $market->low }}

Volume: {{ $market->volume }}

View Edit
@csrf @method('DELETE')
@endforeach
@endsection