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

{{__("Products Report")}}

@endsection @section('content')
{{--
--}}
@if(isset($report_branches))
@php $branches_count=0; @endphp @foreach($report_branches as $branch)
@foreach($branch['products'] as $key => $product) @endforeach {{-- --}}
{{__('#')}} {{__('Code')}} {{__('Type')}} {{__('Particulars')}} {{__('Unit')}} {{__('CAS No.')}} {{__('Regulation')}} {{__('Regulation Limit')}} {{__('Status')}} {{__('Reason')}} {{__('Discontinued Date')}} {{__('Manufacturer')}} {{__('Stock Alert')}} {{__('Reorder Level')}} {{__('Quantity')}}
{{$key+1}} {{$product['product']['code']}} {{isset($product['product']['product_type']['name']) ? $product['product']['product_type']['name'] : ''}} {{$product['product']['name']}} {{-- {{isset($product['product']['product_category']['name']) ? $product['product']['product_category']['name'] : ''}} --}} {{$product['product']['description']}} {{isset($product['product']['product_unit']['name']) ? $product['product']['product_unit']['name'] : ''}} {{$product['product']['cas_no']}} {{$product['product']['regulated']}} {{$product['product']['regulated_limit']}} {{$product['product']['status']}} {{$product['product']['reason']}} {{$product['product']['discontinued_date']}} @if(isset($product['product']['product_manuc'])) @foreach($product['product']['product_manuc'] as $manuc) {{$manuc['manufacturer']['name']}}
@endforeach @endif
{{$product['alert_quantity']}} {{$product['reorder_level']}} {{$product['quantity']}}
{{__('Download')}}
@php $branches_count++; @endphp @endforeach
@endif
@endsection @section('scripts') @endsection