{{ ($sales_type == 'customer') ? $sale_data->display_name : ucfirst($sale_data->name)}} |
{{!empty($sale_data->qty) ? $sale_data->qty : '' }} |
{{!empty($sale_data->sales) ? number_format($sale_data->sales, $decimal_point) : number_format(0,$decimal_point) }} |
{{!empty($sale_in_percentage)?number_format($sale_in_percentage,$decimal_point) : number_format(0,$decimal_point) }} |
{{!empty($sale_data->cost )? number_format($sale_data->cost, $decimal_point) : number_format(0,$decimal_point) }} |
{{!empty($cost_in_percentage) ? number_format($cost_in_percentage,$decimal_point): number_format(0,$decimal_point) }} |
{{!empty($profit)? number_format($profit, $decimal_point) : number_format(0,$decimal_point) }} |
{{!empty($profit_in_percentage) ? number_format($profit_in_percentage,$decimal_point) : number_format(0,$decimal_point) }} |
@endforeach
|
|
{{ number_format($sale_total, $decimal_point) }} |
|
{{ number_format($cost_total, $decimal_point) }} |
|
{{ number_format($profit_total,$decimal_point) }} |
|