@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'سجل التدقيق الاجتماعي' : 'Social Audit Log') @section('skip_page_hero', true) @section('content')
@foreach($audits as $audit)

{{ $audit->action }}

{{ $audit->user?->name ?? '—' }} • {{ $audit->student?->name ?? '—' }} • {{ $audit->record_type }}#{{ $audit->record_id }} • {{ $audit->created_at?->format('Y-m-d H:i') ?? '—' }}

@endforeach
{{ $audits->links('pagination::simple-tailwind') }}
@endsection