@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@forelse (unreadNotification() as $notification) @php $sender = App\Models\User::find($notification->sender_id); @endphp @empty @endforelse
{{ _trans('common.Message') }} {{ _trans('common.Created_at') }}
{{ @$notification->title }}
{!! @$notification->body !!}
{{ @$notification->created_at?->diffForHumans() }}
@endsection @section('script') @include('backend.partials.table_js') @endsection