@extends( 'layout.dashboard' ) @section( 'layout.dashboard.body' )
@include( Hook::filter( 'ns-dashboard-header', '../common/dashboard-header' ) )
@include( '../common/dashboard/title' )
  • {{ sprintf( __( 'Date : %s' ), ns()->date->getNowFormatted() ) }}
  • {{ sprintf( __( 'Document : %s' ), $documentTitle ) }}
  • {{ sprintf( __( 'By : %s' ), Auth::user()->username ) }}
{{ ns()->option->get( 'ns_store_name' ) }}
{{ __( '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...' ) }}
@{{ sum( stockReportResult, 'quantity' ) }} @{{ totalSum( stockReportResult, 'sale_price', 'quantity' ) | currency }}
@endsection