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

{{__('Expired Products Alert')}}

@endsection @section('content')

{{__('Products')}}

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