@extends('layouts.master') @section('css') @endsection @section('content')

Notification List ({{ $eventNotifications->total() }})

@if (count($eventNotifications) > 0) @php $i = $eventNotifications->perPage() * ($eventNotifications->currentPage() - 1) + 1; @endphp @foreach ($eventNotifications as $eventNotification) @endforeach @else @endif
Sr. No Title Body
{{ $i++ }} {{ $eventNotification->title ?? '' }} {{ $eventNotification->body ?? '' }}
No Data Found
{{ $eventNotifications->appends(Request::all())->links() }}
@endsection @section('js') @endsection