@extends('layouts.master') @section('styles') @endsection @section('content')
| SKU | Product | @if(count($data['segments'])>0) @foreach($data['segments'] as $segment){{$segment}} | @endforeach @endifTotal Revenue | |||||
|---|---|---|---|---|---|---|---|---|
| Qty | Amount | @endforeach|||||||
| {{$item->item_sku}} | {{$item->item_name}} | @if(isset($item)) @foreach($data['segments'] as $segment) @php $count=0; @endphp @foreach(collect($data['data'])->where('item_sku', $item->item_sku) as $itemDetails) @if($itemDetails->segment==$segment) @php $total_revenue += $itemDetails->revenue; @endphp{{number_format($itemDetails->qty,2)}} | {{number_format($itemDetails->revenue,2)}} | @php $count++; @endphp @endif @endforeach @if($count==0)0 | 0 | @endif @endforeach @else @foreach($data['segments'] as $segment)0 | 0 | @endforeach @endif{{number_format($total_revenue,2)}} |