@extends('layouts.app') @section('style') @endsection @section('content')

Observation Report

Top 7 Big Profit Trades

@if(count($topProfitableTrade) > 0)
@foreach ($topProfitableTrade as $item) @endforeach
Ticket No Account No Name Email VOLUME Profit
{{ $item->TICKET }} {{ $item->LOGIN }} {{ $item->NAME }} {{ $item->EMAIL }} {{ $item->VOLUME }} $ {{ $item->PROFIT }}
@else


Sorry! No Data Found In This Daterange.




@endif

Top 7 Big Loss Trades

@if(count($topLossTrade) > 0)
@foreach ($topLossTrade as $item) @endforeach
Ticket No Account No Name Email VOLUME Profit
{{ $item->TICKET }} {{ $item->LOGIN }} {{ $item->NAME }} {{ $item->EMAIL }} {{ $item->VOLUME }} $ {{ $item->PROFIT }}
@else


Sorry! No Data Found In This Daterange.




@endif
@endsection @section('script') {{-- {{ Html::script('custom/eModal/eModal.js') }} --}}