@extends('layouts.mobile-user') @section('content')

{{$trading_pairs->last}} USD

{{$page_title}}


High {{$trading_pairs->high}}
Low {{$trading_pairs->low}}
Vol {{number_format((float)$trading_pairs->volume,2, '.','')}} B
@foreach($transactions as $tr) @if($tr->type == 0) @endif @endforeach
Buy Volume
{{number_format((float)$tr->amount,4, '.','')}} {{number_format((float)$tr->price,4, '.','')}}
@foreach($transactions as $tr) @if($tr->type == 1) @endif @endforeach
Sell Volume
{{number_format((float)$tr->amount,4, '.','')}} {{number_format((float)$tr->price,4, '.','')}}
@endsection