@extends('dashboard.user.layouts.app')
@section('content')
@slot('header')
Read All
@endslot
| # |
Title |
Message |
Status |
Action |
@foreach ($notifications as $notification)
| {{ $loop->iteration }} |
{{ $notification->title }}
|
{{ $notification->description }}
|
@if ($notification->read)
Read
@else
Unread
@endif
|
View
|
@endforeach
@endsection