Welcome, @php echo auth()->user()->name; @endphp !

{{-- --}} Issue Entry
{{-- Task Report Start --}}
@php $one_month_ago = date('m-d'); $total_task = DB::table('issue_entries') ->where('issue_assign_to', Auth::user()->id) ->where('assign_date', '>', $one_month_ago) ->count(); $task_complete = DB::table('issue_entries') ->where('issue_assign_to', Auth::user()->id) ->where('issue_status', 'Close') ->where('assign_date', '>', $one_month_ago) ->count(); $task_pending = DB::table('issue_entries') ->where('issue_assign_to', Auth::user()->id) ->where('issue_status', 'Open') ->where('assign_date', '>', $one_month_ago) ->count(); $task_vendor = DB::table('issue_entries') ->where('issue_assign_to', Auth::user()->id) ->where('issue_status', 'Open') ->where('issue_handed_over_to_vendor', '!=', null) ->where('assign_date', '>', $one_month_ago) ->count(); @endphp
Total Task

{{ $total_task ?? 0 }}

Task Complete

{{ $task_complete ?? 0 }}

Task Pending

{{ $task_pending ?? 0 }}

Task Vendor

{{ $task_vendor ?? 0 }}

{{-- Task Report End --}} {{-- firework and birthday wish and work anniversary wish Start --}}
@php $user = auth()->user(); @endphp
Warning: Undefined variable $user in D:\NTG_App\www\Support_Issue\resources\views\layouts\its\User.blade.php on line 104

Warning: Attempt to read property "joining_date" on null in D:\NTG_App\www\Support_Issue\resources\views\layouts\its\User.blade.php on line 104

Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in D:\NTG_App\www\Support_Issue\resources\views\layouts\its\User.blade.php on line 104

Warning: Undefined variable $user in D:\NTG_App\www\Support_Issue\resources\views\layouts\its\User.blade.php on line 105

Warning: Attempt to read property "dob" on null in D:\NTG_App\www\Support_Issue\resources\views\layouts\its\User.blade.php on line 105

Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in D:\NTG_App\www\Support_Issue\resources\views\layouts\its\User.blade.php on line 105
{{-- firework and birthday wish and work anniversary wish End --}}