@extends('layouts.adminapp') @section('content')
{{__('lng.AppNotificationTable')}}
{{__('lng.CreateNew')}}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach($AppNotifications as $AppNotification) @endforeach
{{__('lng.SiNo')}} {{__('lng.Title')}} {{__('lng.Subhead')}} {{__('lng.Type')}} {{__('lng.Date')}} {{__('lng.Narration')}} {{__('lng.Action')}}
{{++$si}} {{$AppNotification->title}} {{$AppNotification->subhead}} {{$AppNotification->type}} {{$AppNotification->date}} {{$AppNotification->narration}}
@csrf @method('delete')

{{$AppNotifications->count()}} {{__('lng.Items')}}

@endif
@endsection