@extends('layout.main') @section('content')

{{trans('file.Product Quantity Alert')}}

@foreach($lims_product_data as $key=>$product) @endforeach
{{trans('file.Image')}} {{trans('file.Product Name')}} {{trans('file.Product Code')}} {{trans('file.Quantity')}} {{trans('file.Alert Quantity')}}
{{$key}} {{$product->name}} {{$product->code}} {{number_format((float)($product->qty), 2, '.', '')}} {{number_format((float)($product->alert_quantity), 2, '.', '')}}
@endsection @push('scripts') @endpush