@extends('layouts.app') @section('title') {{__('Near Expiry Alert')}} @endsection @section('breadcrumb')

{{__('Near Expiry Alert')}}

@endsection @section('content')

{{__('Products')}}

@foreach($nearExpiry as $products) @endforeach
{{__('Product Code')}} {{__('Product Type')}} {{__('Particulars')}} {{__('Product Unit')}} {{__('Expiry Date')}} {{__('Batch No.')}} {{__('Current Quantity')}}
{{$products->product->code}} {{$products->product->product_type->name}} {{$products->product->product_category->name}} {{$products->product->name}} {{$products->product->description}} {{$products->product->product_unit->name}} {{date('F j, Y', strtotime($products->expiry_date))}} {{$products->batch_no}} {{$products->stock_remaining}}
@endsection @section('scripts') {{-- --}} @endsection