@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', ]) @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')
{{$loop->iteration}}
Name EMail
{{$notification->getTypeString ?? 'N/A'}} {{json_encode($notification->data)}} {{$notification->notification}} @if($notification->is_read == 0)
@csrf
@endif
@endsection