@extends('layouts.app') @section('title', $emailTemplate->name) @section('content')

{{ $emailTemplate->name }}

@if($emailTemplate->description)

{{ $emailTemplate->description }}

@endif
{{ $emailTemplate->is_active ? 'Aktif' : 'Pasif' }} {{ strtoupper($emailTemplate->type) }} @if($emailTemplate->category) {{ $categories[$emailTemplate->category] ?? $emailTemplate->category }} @endif
{{ $emailTemplate->slug }}
{{ $emailTemplate->subject }}
{{ $emailTemplate->body }}

Test Email Gönder

@csrf

Şablondaki değişkenler için test verileri. JSON formatında olmalıdır.

@endsection