@extends('layouts.app') @section('title', 'Activity Log — ' . $user->name) @section('page-title', $user->name . ' — Activity Log') @section('content')
Back to {{ $user->name }}
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
@if($logs->isEmpty())

No activity recorded for this staff member yet.

Activity will appear here as modules are used.

@else
@foreach($logs as $log) @endforeach
Activity Action Type Date & Time
{{ $log->description }}
@if($log->subject_type && $log->subject_id)
{{ class_basename($log->subject_type) }} #{{ $log->subject_id }}
@endif
{{ $log->action }} {{ $log->created_at->format('d M Y, h:i A') }}
{{ $log->created_at->diffForHumans() }}
@if($logs->hasPages())
{{ $logs->links() }}
@endif @endif
@endsection