@extends('layouts.app') @section('title', 'Company Activity: ' . $company->name) @section('content')
Back to Company

Activity: {{ $company->name }}

{{ $company->name }}

{{ $company->email ?? 'N/A' }}

@forelse($logs as $log) @empty @endforelse
Timestamp User Action Module Description Actions
{{ $log->created_at->format('M d, Y') }}
{{ $log->created_at->format('H:i:s') }}
@if($log->user)
{{ $log->user->name }}
{{ $log->user->email }}
@else System @endif
{{ ucfirst($log->action) }} {{ ucfirst(str_replace('_', ' ', $log->module)) }}
{{ Str::limit($log->description, 80) }}
View
No activity logs found for this company.
@if($logs->hasPages())
{{ $logs->links() }}
@endif
@endsection