@extends('layouts.master') @section('title', 'User') @push('css') @endpush @section('content')
@foreach ($data as $dt) @if ($dt['currentQuantity'] <= $dt['product']->reorder_level) @else @endif @endforeach
Serial Product Id Product Name Re Order Level Current Stock
{{ $loop->iteration }} {{ $dt['product']->id }} {{ $dt['product']->product_name }} {{ $dt['product']->reorder_level }}   {{ $dt['product']->unit }} {{ $dt['currentQuantity'] }} {{ $dt['product']->unit }}
{{ $loop->iteration }} {{ $dt['product']->id }} {{ $dt['product']->product_name }} {{ $dt['product']->reorder_level }}   {{ $dt['product']->unit }} {{ $dt['currentQuantity'] }} {{ $dt['product']->unit }}
@endsection @push('js') @endpush