@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') }}:
{{ $notification->created_at }}
{{ __('Read On') }}:
{{ $notification->read_at }}
{{ __('User Name') }}:
{{ $notification->data['name'] }}
{{ __('User Email') }}:
{{ $notification->data['email'] }}
{{ __('User Country') }}:
{{ $notification->data['country'] }}
{{ __('Subject') }}:

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

@endsection