@extends('layouts.app') @section('title', 'Notification List') @section('content')

Notifications

{{-- Alert Messages --}} @include('common.alert')
All Notifications
@if(count($notifications)>0) @foreach ($notifications as $notification) @endforeach @else @endif
ID Title Message Created Date Actions
{{ $notification->id }} {{ $notification->title }} {!! Str::words(strip_tags($notification->message), 10, ' ...') !!} {{ $notification->created_at }}
There are no data.
{{-- $notifications->links() --}} {{ $notifications->appends(request()->query())->links() }}
@include('notifications.delete-modal') @endsection @push('script') @endpush