@extends('admin.layout.app') @section('title', __('د پیغام تفصیلات')) @section('body')

{{ __('د پیغام تفصیلات') }}

{{ __('front.id') }} {{ $contact->id }} @if(!$contact->is_read) | {{ __('نېغ') }} @endif

{{ __('بیرته') }} @if(!$contact->is_read)
@csrf
@endif
{{ __('د لیږونکی معلومات') }}
{{ $contact->created_at?->format('Y-m-d h:i A') }}
{{ __('لیږونکی') }}
{{ strtoupper(substr($contact->name, 0, 1)) }}
{{ $contact->name }}
@if($contact->email) @endif
@if($contact->phone)
{{ __('تلیفون') }} {{ $contact->phone }}
@endif @if($contact->subject)
{{ __('موضوع') }} {{ $contact->subject }}
@endif
{{ __('نیټه') }}
{{ $contact->created_at?->format('Y-m-d') }}
{{ $contact->created_at?->format('h:i A') }}
{{ __('حالت') }} {{ $contact->is_read ? __('لوستل شوی') : __('نېغ') }}
{{ __('پیغام') }}
{{ __('موده') }}: {{ $contact->created_at?->diffForHumans() }}
@if($contact->message)
{{ __('پیغام متن') }}
{{ __('د لیږونکی لخوا') }}
{{ $contact->message }}
{{ __('د کلماتو شمیر') }}: {{ str_word_count($contact->message) }}
{{ __('د حروفو شمیر') }}: {{ strlen($contact->message) }}
@else
{{ __('پیغام نشته') }}

{{ __('دغه اړیکې پیغام کوم متن نلري') }}

@endif
{{ __('تخنیکی معلومات') }}
{{ __('IP پته') }}: {{ $contact->ip ?? '—' }}
{{ __('براوزر') }}: {{ Str::limit($contact->user_agent ?? '—', 40) }}
{{ __('آخری تازه') }}: {{ $contact->updated_at?->diffForHumans() }}
@if($contact->email) {{ __('ځواب ورکړه') }} @endif
@csrf
@csrf @method('DELETE')
@endsection