@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 : Profit Report' ) }}
  • {{ sprintf( __( 'By : %s' ), Auth::user()->username ) }}
{{ ns()->option->get( 'ns_store_name' ) }}
{{ __( 'Product' ) }} {{ __( 'Unit' ) }} {{ __( 'Quantity' ) }} {{ __( 'Purchase Price' ) }} {{ __( 'Sale Price' ) }} {{ __( 'Taxes' ) }} {{ __( 'Profit' ) }}
@{{ product.name }} @{{ product.unit_name }} @{{ product.quantity }} @{{ product.total_purchase_price | currency }} @{{ product.total_price | currency }} @{{ product.tax_value | currency }} @{{ ( product.total_price - product.total_purchase_price ) | currency }}
@{{ totalQuantities }} @{{ totalPurchasePrice | currency }} @{{ totalSalePrice | currency }} @{{ totalTax | currency }} @{{ totalProfit | currency }}
@endsection