@extends('layouts.trade.app') @push('style') @endpush @section('title', __('Trading')) @section('content')
Pair Bid Ask
@foreach($cats as $key=>$item1)
id == $category) style="display: block;" @else style="display: none;" @endif>
    @foreach(\App\Models\Pair::where('category_id', $item1->id)->where('status', 1)->orderBy('sort')->get() as $list)
  • {{$list->name}} 0.00 0.00
  • @endforeach
@endforeach
Place Order
@include('layouts.trade.sections.logs')
Order Open time Pair Type Volume Open Price Current Price Stop Loss Take Profit Profit Action
@include('layouts.trade.sections.history', ['logs' => $completed])
Order Open time Close time Pair Type Volume Open Price Close Price Stop Loss Take Profit Profit
@endsection @push('script') @endpush