@extends('layouts.admin-main') @section('content')
@foreach ($buySells as $index => $buySell) @endforeach
# {{ __('message.member') }} {{ __('message.phone') }} {{ __('message.product') }} {{ __('message.amount') }} {{ __('message.commission') }} {{ __('message.direction') }} {{ __('message.opening point') }} {{ __('message.closing point') }} {{ __('message.time') }} {{ __('message.profit') }} {{ __('message.status') }} {{ __('message.created date') }} {{ __('message.action') }}
{{ $index + 1 }} {{$buySell->member->user->name??''}} {{$buySell->member->user->phone??''}} ({{number_format($buySell->member->credit??0,2)}} {{$setting_->currency_name}}) {{$buySell->product->name??''}} {{ number_format($buySell->amount, 2) }} {{ $setting_->currency_name }} {{ number_format($buySell->commission, 2) }} {{ $setting_->currency_name }} @if($buySell->direction=='up') @else @endif {{ number_format($buySell->opening_point, 6) }} {{ number_format($buySell->closing_point, 6) }} {{ $buySell->seconds }}s {{ number_format($buySell->profit, 2) }} {{ $setting_->currency_name }} @if ($buySell->status==0) @elseif($buySell->status==1) @else @endif {{ $buySell->created_at->format('d/m/Y H:i:s') }}
{{ csrf_field() }}
{{ $buySells->appends($_GET)->links() }}
@endsection @section('scripts') @endsection @section('meta') {{ __('message.buy sell') }} - {{ config('app.name', 'Dashboard') }} @endsection