Internal Purchase Report
| Branch |
Product Code |
Product |
Manufactured Date |
Qty |
Unit Cost |
Total Cost |
Selling Price |
Supplier |
Action |
@forelse ($productData as $product)
| {{ $product['branch_name'] }} |
{{ $product['product_code'] }} |
{{ $product['product_name'] }} |
{{ $product['manufactured_on'] ? \Carbon\Carbon::parse($product['manufactured_on'])->format('d-m-Y') : '' }}
|
{{ $product['quantity'] }} |
₹ {{ number_format($product['unit_price'], 2) }} |
₹ {{ number_format($product['total_unit_price'], 2) }} |
₹ {{ number_format($product['selling_price'], 2) }} |
Internal |
|
@empty
| No internal manufacturing records found |
@endforelse