@include('common.sidebar')
@include('common.header')
- Home
- Tasks
Create Task
Clients |
Deadline |
Service |
Status |
Senior |
Junior |
Action |
@foreach ($tasks as $row)
{{ $row->client->name ?? null }} |
{{ date('d/m/Y', strtotime($row->end_date)) }} |
{{ $row->clientservice->service->service_name ?? null }}
@php
if ($row->category === 'Ad-hoc') {
echo 'Ad hoc';
}
@endphp
|
@if ($row->complete_task == 'no' && \Carbon\Carbon::now()->gt(\Carbon\Carbon::parse($row->end_date)))
Overdue
@elseif ($row->complete_task == 'no')
Active
@elseif ($row->complete_task === 'yes')
Completed
@endif
|
{{ $row->userAssign->name ?? null }} |
{{ $row->juniorAssign->name ?? null }} |
|
@endforeach
Clients |
Deadline |
Service |
Status |
Senior |
Junior |
Action |
@include('common.footer')