@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'Trade Inventory - Data Analysis'])
{{$branches->branch_name}}
[{{$branches->branch_code}}]

{{$trade_reports->tr_number}}
SUMMARY
@php $num = ($report_products->currentPage() - 1) * $report_products->perPage() + 0; @endphp @foreach($report_products as $report_product) @php $num++; @endphp @endforeach
Product Description Inventory Shelf Cap Max Cap

{{$num}}

{{$report_product->product->sku_description}}
{{($report_product->product->size)}}

{{ $report_product->inventory == null ? '0' : $report_product->inventory }}

{{ $report_product->shelf_cap == null ? '0' : $report_product->shelf_cap }}

{{ $report_product->max_cap == null ? '0' : $report_product->max_cap }}

@include('layouts.footers.auth.footer')
@endsection