@extends('Admin.layouts.app') @section('title', 'Broadcast Notifications') @section('content')
All Broadcast Notifications
@if(Session::has('done'))
{{ Session::get('done') }}
@endif
@forelse($notifications as $notification) @empty @endforelse
Title Description Type
{{ $notification->title }} {{ $notification->body }} {{ $notification->type }}
No notifications found
{{-- Pagination --}} @if ($notifications->hasPages())
{!! $notifications->links('pagination::bootstrap-5') !!}
@endif
@endsection