@extends( 'layout.dashboard' ) @section( 'layout.dashboard.body' )
| {{ __( 'Product' ) }} | {{ __( 'Unit' ) }} | {{ __( 'Quantity' ) }} | {{ __( 'Price' ) }} |
|---|---|---|---|
| {{ __( 'There is no product to display...' ) }} | |||
| @{{ unitQuantity.product.name }} | @{{ unitQuantity.unit.name }} | @{{ unitQuantity.quantity }} | @{{ unitQuantity.quantity * unitQuantity.sale_price | currency }} |
| {{ __( 'Product' ) }} | {{ __( 'Unit' ) }} | {{ __( 'Price' ) }} | {{ __( 'Quantity' ) }} | {{ __( 'Total Price' ) }} |
|---|---|---|---|---|
| {{ __( 'There is no product to display...' ) }} | ||||
| @{{ product.name }} (@{{ product.sku }}) | @{{ unitQuantity.unit.name }} | @{{ unitQuantity.sale_price | currency }} | @{{ unitQuantity.quantity }} | @{{ unitQuantity.quantity * unitQuantity.sale_price | currency }} |
| @{{ sum( stockReportResult, 'quantity' ) }} | @{{ totalSum( stockReportResult, 'sale_price', 'quantity' ) | currency }} | |||