A Laravel package designed to be used with Sharp to display a Fathom dashboard.
You can install the package via composer:
composer require code16/sharp-fathom-dashboardYou can publish and run the migrations with:
You can publish the config file with:
php artisan vendor:publish --tag="sharp-fathom-dashboard-config"FATHOM_API_KEY=
FATHOM_SITE_ID=
#Optional, will display a dashboard command to open Fathom
FATHOM_ACCESS_URL= $config
    ->setName('My Project')
    // ...
    ->declareEntity(Code16\SharpFathomDashboard\Sharp\Entities\FathomDashboardEntity::class);    return $this
        // ...
        ->addEntityLink(Code16\SharpFathomDashboard\Sharp\Entities\FathomDashboardEntity::class, 'Visits', 'fas-chart-line');Done !