@extends('admin.layouts.app') @php $notification_types = @$notification_types; @endphp @section('content')

Notification Type Manager

Notification Type

List of Notification Type

@include('admin.includes.status')
@if(!empty($notification_types)) @foreach($notification_types as $notification_type) @endforeach @endif
Notification Name Notification Key Visible To User Notification Mode Status Action
{{ $notification_type->notification_name }} {{ $notification_type->notification_key }} @if($notification_type->visible_to_user == 0) Hidden for user @elseif($notification_type->visible_to_user == 1) Display to user @elseif($notification_type->visible_to_user == 2) Display in disable mode @endif @if($notification_type->notification_mode == 1) Send email notification @elseif($notification_type->notification_mode == 0) Only log no email send @endif @if(check_route_access('notification.type.status'))
status=="1" ? 'checked="checked"' : '' }}>
@endif
@if(check_route_access('notification.type.edit.form')) @endif @if(check_route_access('notification.type.delete')) @endif
@endsection @section('scripts') @endsection