@extends('user.layouts.xtrade') @section('main') @include('layouts.error') @include('layouts.open')
{{ csrf_field() }}

Available Balance: {{ Auth::user()->currency }} {{ Auth::user()->bal }}

{{ csrf_field() }}

Available Balance:{{ Auth::user()->currency }} {{ Auth::user()->bal }}

Market News

  • Time
  • Symbol
  • Amount
  • Buy/Sell
  • Currency
  • Status
  • Action
@forelse (Auth::user()->historys as $history)
  • {{ $history->time }}
  • {{ $history->trade }}
  • {{ $history->amount }}
  • {{ $history->type }}
  • {{ $history->currency }}
  • {{ $history->status }}
@empty
No Trade on your Account yet
@endforelse
@endsection