@extends('adminlte::page') @section('title', 'Notifications') @section('content_header')

Notifications

@stop @section('content')

All Notifications

@if($notifications->count() > 0)
@foreach($notifications as $notification)
@if($notification->type == 'success') @elseif($notification->type == 'info') @elseif($notification->type == 'warning') @else @endif {{ $notification->title }}
{{ $notification->created_at->diffForHumans() }}

{{ $notification->message }}

@if(!$notification->is_read) @endif
@endforeach
@else

No notifications yet

@endif
{{-- --}} @stop @section('css') @stop @section('js') @stop