@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() ) }}
  • {{ __( 'Document : Sale Report' ) }}
  • {{ sprintf( __( 'By : %s' ), Auth::user()->username ) }}
{{ ns()->option->get( 'ns_store_name' ) }}
{{ __( 'Sub Total' ) }} @{{ summary.subtotal | currency }}
{{ __( 'Sales Discounts' ) }} @{{ summary.sales_discounts | currency }}
{{ __( 'Sales Taxes' ) }} @{{ summary.sales_taxes | currency }}
{{ __( 'Shipping' ) }} @{{ summary.shipping | currency }}
{{ __( 'Total' ) }} @{{ summary.total | currency }}
{{ __( 'Products' ) }} {{ __( 'Quantity' ) }} {{ __( 'Discounts' ) }} {{ __( 'Taxes' ) }} {{ __( 'Total' ) }}
@{{ product.name }} @{{ product.quantity }} @{{ product.discount | currency }} @{{ product.tax_value | currency }} @{{ product.total_price | currency }}
@{{ computeTotal( result, 'quantity' ) }} @{{ computeTotal( result, 'discount' ) | currency }} @{{ computeTotal( result, 'tax_value' ) | currency }} @{{ computeTotal( result, 'total_price' ) | currency }}
{{ __( 'Category' ) }} {{ __( 'Product' ) }} {{ __( 'Quantity' ) }} {{ __( 'Discounts' ) }} {{ __( 'Taxes' ) }} {{ __( 'Total' ) }}
@{{ computeTotal( result, 'total_sold_items' ) }} @{{ computeTotal( result, 'total_discount' ) | currency }} @{{ computeTotal( result, 'total_tax_value' ) | currency }} @{{ computeTotal( result, 'total_price' ) | currency }}
{{ __( 'Category' ) }} {{ __( 'Quantity' ) }} {{ __( 'Discounts' ) }} {{ __( 'Taxes' ) }} {{ __( 'Total' ) }}
@{{ computeTotal( result, 'total_sold_items' ) }} @{{ computeTotal( result, 'total_discount' ) | currency }} @{{ computeTotal( result, 'total_tax_value' ) | currency }} @{{ computeTotal( result, 'total_price' ) | currency }}
@endsection