Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/1.getting-started/1.installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Without this line, you may see unstyled or partially-styled timeline entries in

## Register the panel plugin (optional)

Only needed when you want to register custom renderers; auto-discovery covers everything else. Use the **Filament-namespaced plugin** (not the orphan root `Relaticle\ActivityLog\ActivityLogPlugin` — see [issue #13](https://github.com/relaticle/activity-log/issues/13)):
Only needed when you want to register custom renderers; auto-discovery covers everything else.

```php
use Relaticle\ActivityLog\Filament\ActivityLogPlugin;
Expand Down
6 changes: 1 addition & 5 deletions docs/content/3.essentials/4.customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Three places to register renderers. They write to the same registry — pick by

### Plugin

Preferred for **panel-scoped overrides**. Use `Relaticle\ActivityLog\Filament\ActivityLogPlugin` (the Filament-namespaced one) and pass renderers directly to the plugin.
Preferred for **panel-scoped overrides**. Use `Relaticle\ActivityLog\Filament\ActivityLogPlugin` and pass renderers directly to the plugin.

```php
use Illuminate\Support\HtmlString;
Expand All @@ -76,10 +76,6 @@ $panel->plugin(
);
```

::callout{icon="i-lucide-triangle-alert" color="warning"}
**Use the Filament-namespaced plugin.** A stale orphan class `Relaticle\ActivityLog\ActivityLogPlugin` (root namespace, no `Filament\`) still ships in the package — never import that one. Tracked by [issue #13](https://github.com/relaticle/activity-log/issues/13).
::

### Facade

Useful from a service provider's `boot()` for **global, panel-agnostic overrides** — or for runtime/conditional registration.
Expand Down
47 changes: 0 additions & 47 deletions src/ActivityLogPlugin.php

This file was deleted.

Loading