@extends('layouts.admin') @section('title', 'Notification Templates') @section('page-title', 'Notification Templates') @section('page-subtitle', 'Customize notification messages for payments and attendance') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Notification Templates

Customize the message templates for different notification types. Use placeholders like {{ '{{member_name}}' }}, {{ '{{amount}}' }}, {{ '{{church_name}}' }}, etc.

Member Preferences
@forelse($templates as $template) @empty @endforelse
Name Code Type Status Actions
{{ $template->name }}
@if($template->church_id) Custom @else Default @endif
{{ $template->code }} {{ str_replace('_', ' ', $template->type) }} @if($template->is_active) Active @else Inactive @endif
@if(!$template->church_id)
@csrf
@endif
No notification templates found. Run the seeder to create default templates.

Available Placeholders

Member Data

  • {{ '{{member_name}}' }}
  • {{ '{{church_name}}' }}

Payment Data

  • {{ '{{amount}}' }}
  • {{ '{{receipt_number}}' }}
  • {{ '{{payment_date}}' }}
  • {{ '{{payment_method}}' }}

Church Info

  • {{ '{{church_address}}' }}
  • {{ '{{church_phone}}' }}
  • {{ '{{church_email}}' }}
@endsection