@extends('layouts.admin') @section('content')

All Notifcations

@if(safeCount($notifications) > 0) @endif

Manage Notifcations

@if(safeCount($notifications) > 0) @foreach ($notifications as $k => $notification) @endforeach @else @endif
S.No Notification Received Action
{{$k+1}} {{ $notification->data['msg'] ?? 'New Notification' }} {{ $notification->created_at->diffForHumans() }} @if($notification->read_at == null) @endif
You don't have any notification at this moment
@endsection @section('page-scripts') @include('admin.partials.datatable') @endsection