@extends('layouts.layout-horizontal') @section('title', 'Activity Logs') @section('content')
| Date & Time | User | Action | Type | Description | Company | Details |
|---|---|---|---|---|---|---|
|
{{ $activity->created_at->format('d-M-Y') }} {{ $activity->created_at->format('h:i A') }} |
{{ $activity->user->name ?? 'Unknown' }} | @if($activity->action === 'created') Created @elseif($activity->action === 'updated') Updated @elseif($activity->action === 'deleted') Deleted @else {{ ucfirst($activity->action) }} @endif | {{ $activity->model_label }} | {{ $activity->description }} | {{ $activity->company->name ?? '-' }} | |
| No activity logs found for the selected filters. | ||||||