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

{{trans('file.Product Expiry Report')}}

@foreach($lims_product_data as $key=>$product) @if(date('Y-m-d') >= $product->expired_date) @else @endif @endforeach
{{trans('file.Image')}} {{trans('file.Product Name')}} {{trans('file.Product Code')}} {{trans('file.Batch No')}} {{trans('file.Expired Date')}} {{trans('file.Quantity')}}
{{$key}} {{$product->name}} {{$product->code}} {{$product->batch_no}}
{{date($general_setting->date_format, strtotime($product->expired_date))}}
{{date($general_setting->date_format, strtotime($product->expired_date))}}
{{number_format((float)($product->qty), 2, '.', '')}}
@endsection @push('scripts') @endpush