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

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

{{ __('Type') }}:
{{ __($notification->data['type']) }}
{{ __('User Action') }}:
{{ __($notification->data['action']) }}
{{ __('Created On') }}:
@if(app()->getLocale() == 'fa') {{ verta($notification->created_at)->formatJalaliDatetime() }} @else {{ date_format($notification->created_at, 'd M Y H:i:s') }} @endif
{{ __('Subject') }}:

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

{{ __('Message') }}:

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

@endsection