@include('common.header')

Tasks

@foreach ($tasks as $row) @endforeach
Clients Deadline Service Status Senior Junior Action
{{ $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 }}
Clients Deadline Service Status Senior Junior Action
@include('common.footer')