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

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

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