@extends('backend.layouts.grid') @section('title', __('Notification Template')) @section('link', route('admin.notificationTemplate.create')) @section('content')
@if ($notificationList->count() > 0)
@foreach ($notificationList as $key => $notification) @endforeach
# {{ __('Title') }} {{ __('Message') }} {{ __('Status') }} {{ __('Action') }}
{{ $key+1 }} {{ $notification->title }} {{ $notification->message }} {!! userStatus($notification->status) !!}
@else @include('backend.includes.empty') @endif
@endsection