@extends('dashboard.user.layouts.app') @section('content')
Connect your wallet to start seeing real-time activity and profits.
| Date | Trade | Trader | Invested | Result | Status |
|---|---|---|---|---|---|
| {{ $history->created_at->format('M d, Y H:i') }} | {{ $history->copyTrade->name }} | @if ($history->copyTrade->trader) {{ @$history->copyTrade->trader->user->name }} @else System @endif | {{ currency($user->currency) }}{{ formatAmount($history->invested_amount) }} | {{ $history->profit_loss >= 0 ? '+' : '' }}{{ currency($user->currency) }}{{ formatAmount($history->profit_loss) }} | @if ($history->is_active) Active @else Closed @endif |
| No trade activity found yet. | |||||