@extends('admin.layouts.layouts') @section('title', 'Details | Appointment Template Letter') @section('page-css') @endsection @section('content')
Template Details
Effective From:
{{ date('d-m-Y', strtotime($template->effective_date)) ?? '-' }}
Created At:
{{ $template->created_at->format('d-m-Y') }}
Created By:
{{ $template->createdBy?->name }}
Updated At:
{{ $template->updated_at ? $template->updated_at->format('d-m-Y') : '' }}
Updated By:
{{ isset($template->updated_at) ? $template->updatedBy?->name : '-' }}

{!! $template->description !!}
@endsection