@extends('layouts.app') @section('title', 'Acknowledgement Details') @section('page-header')

Acknowledgement Details

Back
@endsection @section('content')
Acknowledgement Information

{{ $acknowledgement->user->name ?? 'N/A' }}

{{ $acknowledgement->acknowledged_at ? $acknowledgement->acknowledged_at->format('Y-m-d H:i') : 'N/A' }}

{{ ucfirst($acknowledgement->status) }}

#{{ $acknowledgement->documentDistribution->document_distributions_id ?? 'N/A' }}

@if($acknowledgement->comments)

{{ $acknowledgement->comments }}

@endif
@endsection