@extends('dashboard.user.layouts.app') @section('content')
No profit available to withdraw
@endif| Date | Trade Name | Invested Amount | Profit/Loss | Status | Details |
|---|---|---|---|---|---|
| {{ $history->created_at->format('M d, Y H:i A') }} |
{{ $history->copyTrade->name }}
{{ Str::limit($history->copyTrade->description, 30) }} |
{{ currency($user->currency) }}{{ formatAmount($history->invested_amount) }} | {{ $history->profit_loss >= 0 ? '+' : '' }}{{ currency($user->currency) }}{{ formatAmount($history->profit_loss) }} | @if ($history->is_active) Open @else Closed @endif | |
|
No trading activity recorded for this trader yet. |
|||||