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

Notifications

Add Notification
@forelse ($notifications as $notification) @empty @endforelse
ID Subject Content Is Scheduled Schedule Expiration
{{ $notification['id'] ?? 'N/A' }} {{ $notification['subject'] ?? 'N/A' }} {{ $notification['content'] ?? 'N/A' }} {{ $notification['isScheduled'] ? 'Yes' : 'No' }} {{ $notification['schedule'] ? \Carbon\Carbon::parse($notification['schedule'])->format('M d, Y H:i') : 'N/A' }} {{ $notification['expiration'] ? \Carbon\Carbon::parse($notification['expiration'])->format('M d, Y H:i') : 'N/A' }}
No notifications found.
@if ($updating)
Loading...
@endif
@endsection