@extends('layouts.app') @section('title') Панель Управления U13| Уведомления @endsection @section('custom-head-scripts') @endsection @section('content')
@include('parts.messages')

Добавить новое уведомление

@foreach($notifications as $notification) @php $sendDateTime = explode(' ', mb_substr($notification->created_at, 0,16)); @endphp @endforeach
Получалень Заголовок Сообщение Отправлено Статус Действия
{{$notification->user->surname}} {{$notification->user->name}} {{$notification->user->middle_name}} {{$notification->message}} {{$sendDateTime[0]}}
{{$sendDateTime[1]}}
@if($notification->visited == true) Просмотрено @else Не просмотрено @endif
{{ $notifications->onEachSide(5)->links() }}
@endsection @section('custom-scripts-footer') @endsection