@extends('layouts.app') @section('title') {{__('Products report')}} @endsection @section('breadcrumb')

{{__('Reports')}}

@endsection @section('content')

{{__('Products report')}}

@if(isset($report_branches))
@php $branches_count=0; @endphp @foreach($report_branches as $branch)
@foreach($branch['products'] as $product) @endforeach
{{__('SKU')}} {{__('Name')}} {{__('Quantity')}}
{{$product['product']['sku']}} {{$product['product']['name']}} {{$product['quantity']}}
{{__('Download')}}
@php $branches_count++; @endphp @endforeach
@endif
@endsection @section('scripts') @endsection