@extends("WarehouseDashboard.layouts.dashboard.app")
@section("page-nav-title")
@endsection
@section("content")
@include("layouts.main-parts.page-message")
| {{__("المادة")}} |
{{__("الوحدة")}} |
@foreach($branches as $branch)
{{$branch->store_name}} |
@endforeach
{{__('المجموع')}} |
{{__('الملاحظات')}} |
@php
$total=0;
$collection=0;
$array=$branches->toArray();
$Quantity=[];
if(count($array) >0){
foreach ($array as $key3 => $a){
$Quantity[$key3]=0;
}
}
@endphp
@foreach($items as $item)