@extends('layouts.app') @section('title', $template->name) @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Template Details

Name

{{ $template->name }}

Status

@if($template->is_active) Active @else Inactive @endif

Talk Type

{{ ucfirst(str_replace('_', ' ', $template->talk_type)) }}

Duration

{{ $template->duration_minutes }} minutes

Topic

{{ $template->topic ? $template->topic->title : 'N/A' }}

Usage Count

{{ $template->usage_count }} times

@if($template->description)

Description

{{ $template->description }}

@endif

Template Content

@if($template->title)

Default Title

{{ $template->title }}

@endif @if($template->description_content)

Default Description

{{ $template->description_content }}

@endif @if($template->key_points)

Key Points

{{ $template->key_points }}

@endif @if($template->regulatory_references)

Regulatory References

{{ $template->regulatory_references }}

@endif
@endsection