@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') }}
{{ __('Subject') }}:

{{ __($notification->data['subject']) }}

{{ __('Message') }}:

{{ __($notification->data['message']) }}

@endsection