@extends('crm.master') @section('title', 'Manage Email Notifications') @section('content')

Email Notifications

Manage and create email notifications for booking and inventory events

Email Notifications
New Notification
@if (session('success')) @endif @if ($notifications->isEmpty())
No notifications found. Create one now
@else
@foreach ($notifications as $notification) @endforeach
# Name Subject Type Event Recipients Status Actions
{{ $loop->iteration }} {{ $notification->name }} {{ Str::limit($notification->subject, 80) }} {{ ucfirst($notification->notification_type) }} @if ($notification->event)
{{ $notification->getEventLabel() }}
@else - @endif
{{ $notification->getRecipientsLabel() }} @if ($notification->enabled) Enabled @else Disabled @endif
@endif
@endsection