@extends('admin.layouts.admin') @section('title', 'Sync Loglari') @section('page-title', 'Senkronizasyon Loglari') @section('content') {{-- Filters --}}
Henuz senkronizasyon logu yok.
| Tarih | Yon | Durum | Kayit Sayisi | Detay |
|---|---|---|---|---|
| {{ $log->created_at->format('d.m.Y H:i:s') }} | {{ strtoupper($log->direction) }} | {{ $log->status === 'success' ? 'Basarili' : 'Hata' }} | {{ $log->records_count ?? '-' }} |
@if($log->details)
{{ is_array($log->details) ? json_encode($log->details, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) : $log->details }}
@elseif($log->error_message)
{{ Str::limit($log->error_message, 80) }}
@else
-
@endif
|