@extends('layouts.master') @section('content')

Stock At Hand Report

@csrf
{{--
@error('suppliers') {{ $message }} @enderror
--}} {{--
--}}

{{--
Group By:
--}}
{{--
View:
--}}
{{--
--}}
@if(isset($reportData) && $reportData->isNotEmpty()) @foreach($reportData as $data) @endforeach
Product Stock Quantity Sold Quantity Remaining Quantity
{{ $data->product }} {{ $data->quantity_in_stock }} {{ $data->quantity_sold }} {{ $data->remaining }}
@else

No data found for the selected filters.

@endif
@endsection @push('scripts') @endpush