@extends('admin.layout') @section('title', 'Bildirim Detayı') @section('page-title', 'Bildirim Detayı') @section('content')

{{ $log->merchant_oid }} {{ $log->outcomeLabel() }}

{{ $log->created_at->format('d.m.Y H:i:s') }}

Listeye dön
@if($log->needsAttention())
Bu bildirim, sipariş oluşturulmadan sonuçlanmış olabilir. Müşterinin ödemesinin gerçekten alınıp alınmadığını PayTR panelinden teyit edin ve gerekiyorsa siparişi/hakkı manuel oluşturun.
@endif
Sipariş No (merchant_oid) {{ $log->merchant_oid }}
PayTR durum (status) {{ $log->status_received ?? '—' }}
Gelen tutar {{ $log->total_amount_received ?? '—' }}
Hash doğrulaması @if(is_null($log->hash_valid)) — @elseif($log->hash_valid) Geçerli @else Geçersiz @endif
Tutar doğrulaması @if(is_null($log->amount_valid)) — @elseif($log->amount_valid) Uyumlu @else Uyumsuz @endif
Bekleyen sepet verisi bulundu mu? @if($log->pending_found) Evet @if($log->pending_source) {{ match($log->pending_source) { 'cache_web' => 'Cache (web)', 'cache_api' => 'Cache (mobil API)', 'pending_payments' => 'DB yedeği (pending_payments)', default => $log->pending_source, } }} @endif @else Hayır @endif
IP adresi {{ $log->ip_address ?? '—' }}
Dönülen HTTP kodu {{ $log->http_status_returned }}
@if($log->error_message)
Hata mesajı: {{ $log->error_message }}
@endif
Sipariş
@if($log->order_created && $relatedOrder) @else
Bu bildirim sonucunda sipariş oluşmamış.
@endif
İnceleme
@if($log->reviewed_at)
{{ $log->reviewed_at->format('d.m.Y H:i') }} tarihinde incelendi. @if($log->resolution_note)
Not: {{ $log->resolution_note }} @endif
@else
@csrf
@endif
@if($siblingAttempts->count() > 0)
Aynı sipariş için diğer bildirim denemeleri ({{ $siblingAttempts->count() }})
@foreach($siblingAttempts as $sibling) @endforeach
Tarih Sonuç HTTP
{{ $sibling->created_at->format('d.m.Y H:i:s') }} {{ $sibling->outcomeLabel() }} {{ $sibling->http_status_returned }} Detay
@endif
@endsection