code16/sharp-fathom-dashboard

Sharp package that adds a fathom dashboard

Maintainers

👁 code16

Package info

github.com/code16/sharp-fathom-dashboard

pkg:composer/code16/sharp-fathom-dashboard

Fund package maintenance!

Code16

Statistics

Installs: 344

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v1.1.3 2026-06-18 12:59 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 036408aa88098e9ba0816b15a75229d5b61fab73

  • Lucien PUGET <lucien.puget.woop@code16.fr>

laravelcode16sharp-fathom-dashboard

This package is auto-updated.

Last update: 2026-06-18 13:03:42 UTC


README

A Laravel package designed to be used with Sharp to display a Fathom dashboard.

Installation

You can install the package via composer:

composer require code16/sharp-fathom-dashboard

You can publish and run the migrations with:

You can publish the config file with:

php artisan vendor:publish --tag="sharp-fathom-dashboard-config"

Usage

Setup required environment variables

FATHOM_API_KEY=
FATHOM_SITE_ID=
#Optional, will display a dashboard command to open Fathom
FATHOM_ACCESS_URL= 

Register the Dashboard Sharp's entity in your Sharp Configuration's Service Provider

$config
 ->setName('My Project')
 // ...
 ->declareEntity(Code16\SharpFathomDashboard\Sharp\Entities\FathomDashboardEntity::class);

Add the dashboard in your Sharp's Menu

 return $this
 // ...
 ->addEntityLink(Code16\SharpFathomDashboard\Sharp\Entities\FathomDashboardEntity::class, 'Visits', 'fas-chart-line');

Done !

Credits