@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 : Best Sales Report' ) }}
  • {{ sprintf( __( 'By : %s' ), Auth::user()->username ) }}
{{ ns()->option->get( 'ns_store_name' ) }}
{{ __( 'Product' ) }} {{ __( 'Unit' ) }} {{ __( 'Quantity' ) }} {{ __( 'Value' ) }} {{ __( 'Progress' ) }}
@{{ product.name }} @{{ product.unit_name }}
@{{ product.quantity }} + @{{ product.quantity - product.old_quantity }}
@{{ product.total_price | currency }} + @{{ product.total_price - product.old_total_price | currency }}
@{{ product.difference.toFixed(2) }}% @{{ product.difference.toFixed(2) }}%
{{ __( 'No results to show.' ) }}
{{ __( 'Start by choosing a range and loading the report.' ) }}
@{{ report.current.total_price | currency }}
@endsection