Moon Traders
Daily Stock Register
Date: {{ \Carbon\Carbon::parse($date)->format('d-M-Y') }}
| # | SKU | Opening | Purchase | BF | Issue | Total Issue | Return | Sales | Shortage | In Hand |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $row->sku }} | {{ rtrim(rtrim(number_format($row->opening, 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($row->purchase, 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($row->bf, 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($row->issue, 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($row->total_issue, 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($row->return, 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($row->sale, 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($row->shortage, 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($row->in_hand, 2), '0'), '.') }} |
| No data found based on filters. | ||||||||||
| Grand Total: | {{ rtrim(rtrim(number_format($reportData->sum('opening'), 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($reportData->sum('purchase'), 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($reportData->sum('bf'), 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($reportData->sum('issue'), 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($reportData->sum('total_issue'), 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($reportData->sum('return'), 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($reportData->sum('sale'), 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($reportData->sum('shortage'), 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($reportData->sum('in_hand'), 2), '0'), '.') }} | |