@extends('emails.layouts.crypto') @section('content')
Your trade on {{ $symbol }} has been closed. Here is a summary of the result.
|
@php $isProfit = $pnl >= 0; @endphp
Profit / Loss {{ $isProfit ? '+' : '' }}{{ $currency }} {{ number_format($pnl, 2) }} |
|
||
|
||
|
||
|
||
|
| View trade history → |
Trading involves risk. Past performance does not guarantee future results.
@endsection