@extends('layouts.dashboard') @section('title', 'Audit Logs') @section('header', 'Audit Logs & Activity Tracking') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')
| Date | User | Company | Action | Model | Description | Actions |
|---|---|---|---|---|---|---|
| {{ $log->created_at->format('M d, Y H:i') }} | {{ $log->user->name ?? 'System' }} | {{ $log->company->name ?? 'N/A' }} | {{ ucfirst($log->action) }} | @if($log->model_type) {{ class_basename($log->model_type) }} @else N/A @endif | {{ Str::limit($log->description ?? 'N/A', 50) }} | View |
| No audit logs found. | ||||||