@extends('layouts.default') @section('title') Dashboard @endsection @section('header-style') {{-- --}} {{-- Font Awesome CDN --}} {{-- --}} @endsection @section('content')
{{-- Dashboard Start --}}
Total Customer
@foreach ($vw_dashboard_count as $item)
@endforeach
Total Sell
@foreach ($vw_dashboard_count as $item)
@endforeach
Total Employee
@foreach ($vw_dashboard_count as $data)
@endforeach
@if(auth()->user()->getRoles()->pluck( 'role_key' )->contains('hydrography_admin'))
{{--@json($hydros_notification)--}} @foreach ($hydros_notification as $notifications)
  • {{$notifications->message}}
@endforeach
@endif
{{--
--}} {{--
Notifications {{count($hydros_notification)}}
--}} {{--{{dd($hydros_notification)}}--}} {{-- @foreach ($hydros_notification as $notifications)--}} {{--
  • {{$notifications->message}}
--}} {{-- @endforeach--}} {{--
--}} {{--

--}} {{-- --}} {{--

--}} {{--
--}} {{-- @foreach ($hydros_notification as $notifications)--}} {{--
  • {{$notifications->message}}
--}} {{-- @endforeach--}} {{--
--}}

Recent Payment

{{--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)--}} @endforeach @endif
Order id Customer name Order Date Payment Date Delivery Date Confirmed By Confirmed Date
@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

Schedule Plan

@if(isset($approved_schedules) && count($approved_schedules) > 0) @foreach ($approved_schedules as $approved_schedule) @endforeach @else @endif
Schedule Name Schedule Type From Date To Date Status
@if(isset($approved_schedule->schedule_name)) {{$approved_schedule->schedule_name}} @endif @if(isset($approved_schedule->schedule_type)) {{$approved_schedule->schedule_type->schedule_type_name}} @endif @if(isset($approved_schedule->schedule_from_date)) {{date('Y-m-d', strtotime($approved_schedule->schedule_from_date))}} @endif @if(isset($approved_schedule->schedule_to_date)) {{date('Y-m-d', strtotime($approved_schedule->schedule_to_date))}} @endif @if($approved_schedule->approved_yn == 'Y') Approved @endif
No data Found
{{--
--}} {{-- Static Table --}} {{--

Latest Orders

Order ID Item Status Popularity
OR9842 Call of Duty IV Shipped
OR1848 Samsung Smart TV Pending
OR7429 iPhone 6 Plus Delivered
OR7429 Samsung Smart TV Processing
OR1848 Samsung Smart TV Pending
--}}
@endsection @section('footer-script') @endsection