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

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

{{ __('Type') }}:
@if ($notification->data['type'] == 'new-user') {{ __('New User') }} @elseif ($notification->data['type'] == 'new-payment') {{ __('New Payment') }} @endif()
{{ __('Created On') }}:
{{ date_format($notification->created_at, 'd M Y H:i:s') }}
{{ __('Read On') }}:
{{ date_format($notification->read_at, 'd M Y H:i:s') }}
{{ __('User Name') }}:
{{ $notification->data['name'] }}
{{ __('User Email') }}:
{{ $notification->data['email'] }}
{{ __('Country') }}:
{{ $notification->data['country'] }}
{{ __('Subject') }}:

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

@endsection