@extends('dashboard.layouts.app') @section('title', __('dashboard.Notifications')) @section('page_heading', __('dashboard.Notifications')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Notifications') }}

{{ __('dashboard.Total') }}: {{ $totalNotifications }} {{ __('dashboard.Displayed') }}: {{ $notifications->count() }}
@foreach($notifications as $notification)
{{ $notification->title }}

{{ $notification->description }}

{{ $notification->created_at->diffForHumans() }} @if(!$notification->is_read) {{ __('dashboard.New') }} @endif

@endforeach
@if($notifications->hasMorePages())
@endif
@endsection @section('scripts') @endsection