@if(count($productStockData)>0) @php $bgColor = ''; $textColor = ''; @endphp @foreach($productStockData as $key => $row) @php $currentStock = getCurrentStock($row->id,''); @endphp @if(isset($row->exp_date)) @php $expiryDateTime = new DateTime($row->exp_date); $today = new DateTime(); $interval = $today->diff($expiryDateTime); $daysDifference = $interval->days; if ($daysDifference < 30) { $color = "red"; } @endphp @endif