@extends('layouts.master') @section('title', 'Quick Diary Entry') @push('styles') @include('modules.processing.diary._diary-design') @endpush @section('content') @php $assigneeName = $entry?->assignedUser?->name ?? (auth()->check() ? auth()->user()->name : null) ?? '—'; @endphp

Quick Entry

View quick task details and take action.

Edit Print
@csrf @method('DELETE')
@if(session('success')) @endif
Date
{{ optional($entry->entry_date)->format('D, d M Y') ?? '—' }}
Task Type
{{ $entry->task_type ? ucwords(str_replace('-', ' ', $entry->task_type)) : '—' }}
Title
{{ $entry->task_title }}
Assigned To
{{ $assigneeName }}
Notes
{{ $entry->notes ?: '—' }}
Back to Dashboard All Entries
@endsection