@extends('admin.layouts.app') @section('content')

Notifications

@foreach($notifications as $notification) @endforeach
Title Message Type Created At
{{ $notification->title }} {{ $notification->message }} {{ ucfirst(str_replace('_', ' ', $notification->type)) }} {{ $notification->created_at->format('Y-m-d H:i:s') }}
{{ $notifications->links() }}
@endsection