@extends('layouts.default') @section('title', trans('reports.standard.title.standardreports', ['type' => trans('reports.standard.salesbyproductservicesummary')])) @section('new_button') {{-- // --}} @endsection @section('content')
PRODUCT/SERVICE | QUANTITY | AMOUNT | % OF SALES | AVG PRICE | |
---|---|---|---|---|---|
{{ ucwords($li->name) }} | {{ $li->quantitysum }} | {{ $amount }} | {{ ($amount != 0)?round((($amount)/($total))*100):0 }} % | @if($li->quantitysum != 0){{ $amount / $li->quantitysum }} | @else{{ $amount }} | @endif
TOTAL | @money($total, 'USD', true) | 100 % |