@extends('admin.admin_master') @section('admin')
@include('admin.backend.report.body.report_top')
{{-- /// end Container --}}
@foreach ($products as $key=> $item) @endforeach
Sl Product Name Category Warehouse Stock Quantity
{{ $key+1 }} {{ $item->name }} {{ $item->category->category_name ?? 'N/A' }} {{ $item->warehouse->name ?? 'N/A' }}

{{ $item->product_qty ?? 'N/A'}}

{{-- /// End Card --}}
@endsection