@extends('layouts.master') @section('styles') @endsection @section('content')
| Brand | @foreach ($data['months'] as $dt){{$dt->format("M-Y")}} | @endforeach
|---|---|
| {{$brand->name}} | @foreach ($data['months'] as $dt) @php $netsales = collect($data['orders'])->where('brand_id',$brand->id)->where('datemonth',$dt->format("Y-m"))->first(); $netsale = (float)$netsales->net_sale; @endphp{{number_format($netsale,2)}} | @endforeach