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

Notification

Create Notification
{{-- //form starts --}}
@csrf
@error('notification_title')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
{{-- //form ends --}}
History
@foreach ($notifications as $notification) @endforeach
S/N TITLE DESCRIPTION ACTION
{{ $loop->iteration }} {{ $notification->title }} {{ $notification->description }}
@foreach ($notifications as $notification) @endforeach @endsection