@extends('backend.layouts.master')
@section('title', __('static.notification.list_notifications'))
@section('content')
@forelse (auth()->user()->notifications as $notification)
- read_at) class="unread" @endif>
{{ $notification->data['message'] }}
{{ $notification->created_at->diffForHumans() }}
@empty
Data Not Found
@endforelse
@endsection
@push('js')
@endpush