{{ $user->email }}
{{ number_format($totalProfit, 2) }}
{{ $products->total() }}
{{ $sales->total() }}
{{ $stockInputs->total() }}
{{ $stockOutputs->total() }}
{{ $stockReceived->total() }}
| Product Name | Quantity | Unit | Input Price | Selling Price |
|---|---|---|---|---|
| {{ $product->name }} | {{ $product->quantity }} | {{ $product->unit }} | {{ number_format($product->input_price_per_unit, 2) }} | {{ number_format($product->selling_price_per_unit, 2) }} |
| No products found | ||||
| Date | Product | Customer | Quantity | Total Price |
|---|---|---|---|---|
| {{ $sale->created_at->format('d/m/Y H:i') }} | {{ $sale->product->name }} | {{ $sale->customer->username }} | {{ $sale->quantity }} {{ $sale->product->unit }} | {{ number_format($sale->total_price, 2) }} |
| No sales found | ||||
| Date | Product | Quantity | Input Price |
|---|---|---|---|
| {{ $input->created_at->format('d/m/Y H:i') }} | {{ $input->product->name }} | {{ $input->quantity }} {{ $input->product->unit }} | {{ number_format($input->input_price_per_unit, 2) }} |
| No stock inputs found | |||
| Date | Product | To | Quantity | Reason |
|---|---|---|---|---|
| {{ $output->created_at->format('d/m/Y H:i') }} | {{ $output->product->name }} | {{ $output->outputToUser->name }} | {{ $output->quantity }} {{ $output->product->unit }} | {{ $output->reason ?? 'N/A' }} |
| No stock transfers found | ||||
| Date | Product | From | Quantity | Reason |
|---|---|---|---|---|
| {{ $transfer->created_at->format('d/m/Y H:i') }} | {{ $transfer->product->name }} | {{ $transfer->outputByUser->name }} | {{ $transfer->quantity }} {{ $transfer->product->unit }} | {{ $transfer->reason ?? 'N/A' }} |
| No received stock found | ||||