@foreach($this->data() as $line) @endforeach
Customer Qty Revenue Cost Profit Margin
{{$line->name}} {{$line->qty}} £{{number_format($line->revenue)}} £{{number_format($line->cost)}} £{{number_format($line->profit)}} {{number_format($line->margin)}}%
Total {{$this->data()->sum('qty')}} £{{number_format($this->data()->sum('revenue'))}} £{{number_format($this->data()->sum('cost'))}} £{{number_format($this->data()->sum('profit'))}} {{number_format($this->data()->avg('margin'))}}%