Last |
Upgradation |
Downgradation |
{{ $customer_order_info->upgration_delivery_date }}
|
{{ $customer_order_info->downgration_delivery_date }}
|
|
@endif
@php
// dd($customer_order_info->upgrations);
if (!empty($customer_order_info->upgrations)) {
$up = $customer_order_info->upgrations->where('status', 'Pending')->first();
if ($up != null) {
$upgradation_date = $up->delivery_date;
$upgradation_time = $up->delivery_time;
}
}
// if(!empty($customer_order_info->upgrations->first()) && $customer_order_info->upgrations->first()->status == "Pending"){
// $upgradation_date = $customer_order_info->upgrations->first()->delivery_date;
// $upgradation_time = $customer_order_info->upgrations->first()->delivery_time;
// }
@endphp
{{-- {{ dd()}} --}}
{{-- @if ($customer_order_info->upgration_delivery_date != null)
Last Upgradation Date: |
{{ $customer_order_info->upgration_delivery_date }} |
@endif --}}