{{--
--}}
{{--
Notifications {{count($hydros_notification)}}
--}}
{{--{{dd($hydros_notification)}}--}}
{{-- @foreach ($hydros_notification as $notifications)--}}
{{--
- {{$notifications->message}}
--}}
{{-- @endforeach--}}
{{--
--}}
{{--
--}}
{{-- --}}
{{-- Notifications --}}
{{-- {{count($hydros_notification)}}--}}
{{-- --}}
{{--
--}}
{{--
--}}
{{-- @foreach ($hydros_notification as $notifications)--}}
{{--
- {{$notifications->message}}
--}}
{{-- @endforeach--}}
{{--
--}}
Recent Payment
| Order id |
Customer name |
Order Date |
Payment Date |
Delivery Date |
Confirmed By |
Confirmed Date |
{{--SELECT c.CUSTOMER_NAME,
(SELECT EMP_NAME FROM V_EMPLOYEE VE WHERE VE.EMp_ID = PO.CONFIRMED_BY) CONFIRMED_BY,
(SELECT EMP_NAME FROM V_EMPLOYEE VE WHERE VE.EMp_ID = PO.FILE_UPLOAD_COMPLETE_BY) FILE_UPLOAD_COMPLETE_BY,
PO.ORDER_DATE,PO.PAYMENT_COMPLETED_DATE,PO.TENTATIVE_CONFIRMATION,PO.FILE_UPLOAD_COMPLETE_DATE
FROM PRODUCT_ORDER PO
LEFT JOIN CUSTOMER C ON PO.CUSTOMER_ID = C.CUSTOMER_ID
WHERE PO.PAYMENT_COMPLETED_YN = 'Y'
ORDER BY PO.PRODUCT_ORDER_ID DESC;
--}}
@if(isset($vw_recent_payment) && count($vw_recent_payment) > 0)
@foreach ($vw_recent_payment as $item)
{{-- @json($item)--}}
| @if(isset($item->product_order_id)){{$item->product_order_id}}@endif |
@if(isset($item->customer_name))
{{$item->customer_name}}
@endif
|
@if(isset($item->order_date))
{{date('Y-m-d', strtotime($item->order_date))}}
@endif
|
@if(isset($item->payment_completed_date))
{{date('Y-m-d', strtotime($item->payment_completed_date))}}
@endif
|
@if(isset($item->tentative_confirmation))
{{date('Y-m-d', strtotime($item->tentative_confirmation))}}
@endif
|
@if(isset($item->file_upload_complete_by))
{{$item->file_upload_complete_by}}
@endif
|
@if(isset($item->file_upload_complete_date))
{{date('Y-m-d', strtotime($item->file_upload_complete_date))}}
@endif
|
@endforeach
@endif