@extends('admin.layout') @section('title', 'Seguimiento de Notificaciones de Pago') @section('page-title', 'Ödeme Bildirim Takibi') @section('content')

PayTR Bildirim (Notify) Takibi

PayTR'nin gönderdiği her bildirim denemesi burada kaydedilir — LOG_LEVEL ayarından bağımsız. "Ödeme alındı ama sipariş oluşmadı" durumlarını teşhis etmek için kullanın.

@if($needsAttentionCount > 0) {{ $needsAttentionCount }} dikkat gerektiren @endif
@if($logs->count() > 0)
@foreach($logs as $log) @endforeach
Tarih Sipariş No Sonuç Hash Tutar HTTP Durum
{{ $log->created_at->format('d.m.Y H:i:s') }} {{ $log->merchant_oid }} {{ $log->outcomeLabel() }} @if(is_null($log->hash_valid)) — @elseif($log->hash_valid) @else @endif {{ $log->total_amount_received ?? '—' }} {{ $log->http_status_returned }} @if($log->reviewed_at) İncelendi @elseif($log->needsAttention()) Bekliyor @else — @endif Detay
{{ $logs->links() }}
@else

Henüz bildirim kaydı bulunmamaktadır.

@endif
@endsection