@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Notification') }} ID: {{ $notification->id }}

{{ __('Type') }}:
{{ $notification->data['type'] }}
{{ __('User Action') }}:
{{ $notification->data['action'] }}
{{ __('Created On') }}:
{{ date_format($notification->created_at, 'd M Y H:i:s') }}
{{ __('Sender') }}:
{{ ucfirst($notification->data['sender']) }}
{{ __('Read On') }}:
{{ date_format($notification->read_at, 'd M Y H:i:s') }}
{{ __('Subject') }}:

{{ $notification->data['subject'] }}

{{ __('Message') }}:

{{ $notification->data['message'] }}

@endsection