@extends('layouts.superadmin') @section('title','سجلّ الصيانة') @section('page-title','📋 سجلّ الصيانة — عمليات الإدارة') @section('content')
{{-- فلاتر --}}
{{-- الجدول --}}
@forelse($logs as $row) @empty @endforelse
الوقت الإداري الإجراء الحالة IP النتيجة/المخرجات
{{ \Carbon\Carbon::parse($row->created_at)->format('Y-m-d H:i') }}
{{ $row->admin_name ?? $row->user_name ?? '—' }}
{{ $row->email ?? '' }}
{{ $row->action }} @php $cls = $row->status==='success' ? 'bg-emerald-100 text-emerald-800' : ($row->status==='warning' ? 'bg-amber-100 text-amber-800' : 'bg-rose-100 text-rose-800'); @endphp {{ $row->status }} {{ $row->ip_address }}
عرض
{{ $row->output ?: '—' }}
لا يوجد سجلات.
@if($logs->hasPages())
{{ $logs->withQueryString()->links() }}
@endif
@endsection