@extends('layouts.admin') @section('title') Admin | Email & Notifications Settings @endsection @section('content')

Email Templates

@foreach ($templates as $template) @php $emailTemplate = ["Event Reminder", "Welcome Email", "Event Reminder Notification","Welcome Notification","Event Cancellation Notification"]; $isRestricted = in_array($template->template_name, $emailTemplate); @endphp {{-- --}} @endforeach
ID Template Name Subject Type Actions
{{ $template->id }}{{ $loop->iteration + ($templates->currentPage() - 1) * $templates->perPage() }} {{ $template->template_name }} {{ $template->subject }} {{ $template->type }} Edit
@csrf @method('DELETE')
{{ $templates->links() }}
@endsection