@extends('layouts.master') @section('title', 'Diary Management') @section('content')
| Date & Time | Task Title | Client/Case | Task Type | Priority | Status | Location | Duration | Actions |
|---|---|---|---|---|---|---|---|---|
|
{{ $entry->formatted_date }}
{{ $entry->formatted_time }}
|
{{ $entry->task_title }} | {{ $entry->client_case ?? '-' }} | {{ ucwords(str_replace('-', ' ', $entry->task_type)) }} | @if($entry->priority == 'high') {{ ucfirst($entry->priority) }} @elseif($entry->priority == 'medium') {{ ucfirst($entry->priority) }} @else {{ ucfirst($entry->priority) }} @endif | @if($entry->status == 'completed') {{ ucfirst($entry->status) }} @elseif($entry->status == 'in-progress') {{ ucfirst($entry->status) }} @elseif($entry->status == 'pending') {{ ucfirst($entry->status) }} @else {{ ucfirst($entry->status) }} @endif | {{ $entry->location ?? '-' }} | {{ $entry->duration ?? '-' }} | |
|
No diary entries found. Add Your First Entry |
||||||||