@extends('layouts.master') @section('css') @endsection @section('title') Batch Count Report @endsection @section('content')
| Batch Count Type | Items Count | Items |
|---|---|---|
| {{ $batchCount }} | {{ $items->count() }} |
@foreach ($items as $item)
@php
$name = App\Models\StockItem::where('id', $item)->first()->name;
@endphp
* {{ $name }} , @endforeach |