@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') }}:
@if(app()->getLocale() == 'fa') {{ verta($notification->created_at)->formatJalaliDatetime() }} @else {{ date_format($notification->created_at, 'd M Y H:i:s') }} @endif
{{ __('Read On') }}:
@if(app()->getLocale() == 'fa') {{ verta($notification->read_at)->formatJalaliDatetime() }} @else {{ date_format($notification->read_at, 'd M Y H:i:s') }} @endif
{{ __('User Name') }}:
{{ $notification->data['name'] }}
{{ __('User Email') }}:
{{ $notification->data['email'] }}
{{ __('Country') }}:
{{ __($notification->data['country']) }}
{{ __('Subject') }}:

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

@endsection