@extends('layouts.app') @section('title', 'Stock Consumption Reports') @section('content')

Stock Consumption Reports

Stock and consumption reports

Dashboard New Report
Reset
@forelse($reports as $report) @empty @endforelse
Reference Item Period Opening Consumed Closing Actions
{{ $report->reference_number }} {{ $report->item_name }} {{ $report->report_period_start->format('M d') }} - {{ $report->report_period_end->format('M d, Y') }} {{ $report->opening_stock ?? 'N/A' }} {{ $report->unit ?? '' }} {{ $report->consumed_quantity ?? 'N/A' }} {{ $report->unit ?? '' }} {{ $report->closing_stock ?? 'N/A' }} {{ $report->unit ?? '' }} View Edit
No reports found.
{{ $reports->links() }}
@endsection