@extends('admin.layout.app') @section('title','Notifications') @section('header')

Home - Notifications Managment

@endsection @section('content')
{{ __('Notifications') }}
@foreach($notifications as $key => $notification) @if($notification->read_at) @else @endif @endforeach
No Title Message Time Actions
{{ ++$key }}{{ ++$key }} {{ $notification->data['title'] }} {{ $notification->data['message'] }} {{ $notification->created_at->diffForHumans()}}
{{ ++$key }}
{{ $notification->data['title'] }}
{{ $notification->data['message'] }}
{{ $notification->created_at->diffForHumans()}}
@include('admin.audit.actions')
{{ $notifications->links('vendor.pagination.bordered-rounded') }}
@endsection @section('script') @endsection