@extends('layouts.app') @section('content')
| Type | {{ ucfirst($template->type) }} |
|---|---|
| Subject | {{ $template->subject }} |
| AI Enhanced | {!! $template->is_ai_enhanced ? ' Yes' : ' No' !!} |
| Created | {{ $template->created_at->format('M d, Y H:i') }} |
| Last Updated | {{ $template->updated_at->format('M d, Y H:i') }} |
{{ $template->ai_instructions ?: 'No instructions provided' }}
{{ is_array($template->ai_variables) ? json_encode($template->ai_variables, JSON_PRETTY_PRINT) : ($template->ai_variables ?: 'No variables defined') }}