@extends('layouts.app') @section('title','Audit Log | BASCORE') @section('content')

Audit Log

Create, update and delete activity across the system.
@forelse($logs as $log)@empty@endforelse
DateUserActionRecordIP
{{ $log->created_at->format('d M Y H:i') }}{{ $log->user->name ?? 'System' }}{{ $log->action }}{{ class_basename($log->auditable_type) }} #{{ $log->auditable_id }}{{ $log->ip_address }}
No audit activity yet.
{{ $logs->links() }}
@endsection