@extends('layouts/layoutMaster') @section('title', __('Audit Logs')) @section('vendor-style') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss', ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', ]) @endsection @section('page-script') @vite(['resources/js/main-datatable.js']) @endsection @section('content')
{{-- Breadcrumb Component --}} {{-- Audit Log Table Card --}}
@foreach($auditLogs as $auditLog) @endforeach
{{ __('Id') }} {{ __('User') }} {{ __('Event') }} {{ __('Ip') }} {{ __('Model') }} {{ __('Created At') }} {{ __('Actions') }}
{{ $auditLog->id }} @if($auditLog->user == null) {{ __('N/A') }} @else @endif {{ $auditLog->event }} {{ $auditLog->ip_address }} {{ $auditLog->auditable_type }} {{ $auditLog->created_at }}
@endsection