@php $configData = Helper::appClasses(); @endphp @extends('layouts/layoutMaster') @section('title', __('My Notifications')) @section('vendor-style') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss', 'resources/assets/css/notification.css', ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', ]) @endsection @section('page-script') @vite(['resources/js/main-datatable.js']) @endsection @section('content')

@lang('My Notifications')

@lang('Mark all as read')
@foreach($notifications as $notification) @endforeach
@lang('Id') @lang('From') @lang('Type') @lang('Title') @lang('Message') @lang('Actions')
@if(($notification->is_read == 0 && $notification->read_at === null)) @endif {{$loop->iteration}}
Name EMail
{{$notification->getTypeString ?? 'N/A'}} {{json_encode($notification->data)}} {{$notification->notification}} @if(($notification->is_read == 0 && $notification->read_at === null))
@csrf
@else Read @endif
@endsection