@include('common.header')
| Report Name |
: Capital Gain/Loss (Summary) |
| Period |
: {{ $report_date }} |
| SL# |
Sell Date |
Instrument Name |
No. of Shares |
Sale Rate |
Sale Amount |
Pur. Rate |
Purchase Amount |
Realize Gain/Loss |
Gain/Loss (With Commission) |
@foreach ($gainLossData as $index => $value)
| {{ ($index + 1) }} |
{{ Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $value->business_date)->format('d-m-Y') }} |
{{ $value->instrument_name }} |
{{ number_format($value->no_of_shares, 0) }} |
{{ number_format($value->actual_rate, 2) }} |
{{ number_format($value->sale_amount, 2) }} |
{{ number_format($value->purchase_rate, 2) }} |
{{ number_format($value->purchase_amount, 2) }} |
{{ number_format($value->capital_gain_without_com, 2) }} |
{{ number_format($value->capital_gain, 2) }} |
@endforeach
|
|
|
|
Total |
{{ number_format($totalSaleAmount, 2) }} |
|
{{ number_format($totalPurchaseAmount, 2) }} |
{{ number_format($totalGainLossWWithoutCommission, 2) }} |
{{ number_format($totalGainLoss, 2) }} |
|
@include('common.footer')