@extends('admin.layouts.home') @section('title', 'Notification List') @section('content')
| ID | From | To | Type | Text | Status | Created | Actions |
|---|---|---|---|---|---|---|---|
| {{ $notification->id }} |
|
|
{{ ucwords(str_replace('_', ' ', $notification->type)) }} | {{ Str::limit($notification->text, 50) }} | {{ $notification->seen ? 'Read' : 'Unread' }} |
{{ $notification->created_at->format('M d, Y H:i') }}
{{ $notification->created_at->diffForHumans() }}
|
|