@extends('backend.layouts.master') @section('title', __('static.notification.list_notifications')) @section('content')
{{ __('static.notification.list_notifications') }}
    @forelse (auth()->user()->notifications as $notification)
  • read_at) class="unread" @endif>

    {{ $notification->data['message'] }}

    {{ $notification->created_at->diffForHumans() }}
  • @empty
    no-image
    Data Not Found
    @endforelse
@endsection @push('js') @endpush