@extends('layouts.master') @section('title','Laporan Penerimaan') @section('css') @endsection @section('content')
Laporan Penerimaan
{{-- New column for the button --}} @php $rowNumber = 0; // Initialize counter @endphp @foreach ($purchaseSummary as $itemSummary) @php $rowNumber++; // Increment for each grouped item row @endphp @endforeach
No Kode Barang Nama Barang Total Qty Action
{{$rowNumber}} {{ $itemSummary->item_code }} {{ $itemSummary->item_name }} {{ number_format($itemSummary->total_qty, 0) }} {{-- Button to trigger the modal and AJAX call --}}
@if (session('success')) @endif @if (session('error')) @endif @endsection @section('scripts') @endsection