| {{__('Name')}} | {{__('Type')}} | {{__('Category')}} | {{__('Status')}} | {{__('Usage')}} | {{__('Last Used')}} | {{__('Created')}} | {{__('Actions')}} |
|---|---|---|---|---|---|---|---|
|
{{ $template->name }}
@if($template->description)
{{ Str::limit($template->description, 50) }}
@endif
|
{{ $types[$template->type] ?? $template->type }} | @if($template->category) {{ $categories[$template->category] ?? $template->category }} @else - @endif |
status === 'active' ? 'checked' : '' }}>
|
{{ $template->usage_count }} | @if($template->last_used_at) {{ $template->last_used_at->diffForHumans() }} @else {{__('Never')}} @endif | {{ $template->created_at->format('M d, Y') }} |
|
|
{{__('No templates found. Create your first template!')}} |
|||||||