@extends('admin.layouts') @section('title', 'Notification') @section('header') @endsection @section('content')

Notification

@csrf
@error('notification_title')
{{ $message }}
@enderror
@error('from_date')
{{ $message }}
@enderror
@error('to_date')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
History
@foreach ($notifications as $notification) @endforeach
S/N TITLE DESCRIPTION FROM DATE TO DATE TYPE ACTION
{{ $loop->iteration }} {{ $notification->title }} {{ $notification->description }} {{ $notification->from_date }} {{ $notification->to_date }} {{ $notification->type }}
@foreach ($notifications as $notification) @endforeach @endsection