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

Notification Message Manager

Notification Message

List of Notification Message

{{ csrf_field() }}
Reset
@include('admin.includes.status')
@if(!empty($notification_messages)) @foreach($notification_messages as $notification_message) @endforeach @endif
Notification Text Notification Message Notification Type Name Last Updated Status Action
{{ $notification_message->notification_text }} {{ $notification_message->notification_message }} {{ $notification_message->notification_name }} {{ dateformat($notification_message->updated_at,DISPLAY_DATE)}} @if(check_route_access('notification.message.status'))
status=="1" ? 'checked="checked"' : '' }}>
@endif
@if(check_route_access('notification.message.edit.form')) @endif @if(check_route_access('notification.message.delete')) @endif
@endsection @section('scripts') @endsection