{{ auth()->user()->email }}
{{ $investment->plan?->name }}
Initial Deposit - ${{ number_format($investment->amount, 2) }}
${{ number_format($ownership->value, 2) }}
{{ $ownership->product?->market?->name }}
Quantity: {{ $ownership->quantity }}
You have no items in your store!
| Product | Total | Status | Market | Date | {{--Action | --}}||
|---|---|---|---|---|---|---|---|
| {{ mb_strimwidth($bid->product?->name, 0, 20, '...') }} (X {{ $bid->quantity }}) |
${{ number_format($bid->amount * $bid->quantity, 2) }} | @if($bid->status == 0)In Progress... | @elseif($bid->status == 1)Successful | @elseif($bid->status == 2)Unsuccessful | @endif{{ mb_strimwidth($bid->market?->name, 0, 20, '...') }} | {{ Carbon\Carbon::parse($bid->bid_time)->setTimezone('GMT')->format('D d-M-Y H:i:s T') }} | {{--View | --}}
| Product | Total | Status | Market | Date | {{--Action | --}}||
|---|---|---|---|---|---|---|---|
| {{ mb_strimwidth($sell->product?->name, 0, 20, '...') }} (X {{ $sell->quantity }}) |
${{ number_format($sell->amount * $sell->quantity, 2) }} | @if($sell->status == 0)In Progress... | @elseif($sell->status == 1)Successful | @elseif($sell->status == 2)Unsuccessful | @endif{{ mb_strimwidth($sell->market?->name, 0, 20, '...') }} | {{ Carbon\Carbon::parse($sell->sell_time)->setTimezone('GMT')->format('D d-M-Y H:i:s T') }} | {{--View | --}}