| {{ $loop->iteration }} |
{{ $z->getWarehouse->name_eng }} |
{{ date('d-m-Y', strtotime($z->created_at)) }} |
@php
$total_checkout = $checkout_counts->where('ware_id', $z->warehouse_id)->sum('total_checkout');
$total_reported = $checkout_counts->where('ware_id', $z->warehouse_id)->sum('total_reported');
$total_not_reported = $total_checkout - $total_reported;
$total_warning = $warning_counts->where('warehouse_id', $z->warehouse_id)->sum('total_warning');
@endphp
{{ $total_checkout }} |
{{ $total_reported }} |
{{ $total_not_reported }} |
{{ $total_warning }}
|
@endforeach