@extends('layouts.admin') @section('title', 'Audit log') @section('content')
{{ trans_choice('One entry|:count entries', $logs->total(), ['count' => $logs->total()]) }}
| {{ __('When') }} | {{ __('Who') }} | {{ __('Action') }} | {{ __('What') }} | {{ __('Note') }} |
|---|---|---|---|---|
| {{ $log->created_at?->format('d M Y, H:i') }} | {{-- The name is the copy taken at the time: the account may be gone, and "deleted user did X" answers nothing. --}}{{ $log->actor_name ?: __('System') }} | {{ $log->subject_label ?: '—' }} | {{ $log->note ?: '—' }} |