@extends('layouts.app') @section('title', 'Platform Dashboard') @section('page-title', 'Platform Dashboard') @section('breadcrumb', 'Platform Admin / Overview') @section('content')

Recent Platform Activity

@forelse($recentActivity as $log)

{{ $log->description ?? ucfirst($log->action) }}

{{ $log->user?->name ?? 'System' }} · {{ $log->created_at->diffForHumans() }}

{{ ucfirst($log->action) }}
@empty

No activity yet.

@endforelse
@endsection