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

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

{{ __('Type') }}:
{{ $notification->data['type'] }}
{{ __('User Action') }}:
{{ $notification->data['action'] }}
{{ __('Created On') }}:
{{ $notification->created_at }}
{{ __('Sender') }}:
{{ ucfirst($notification->data['sender']) }}
{{ __('Read On') }}:
{{ $notification->read_at }}
{{ __('Subject') }}:

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

{{ __('Message') }}:

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

@endsection