b4mtech / laravel-umami
A package to add umami analytics to your laravel application
Installs: 1 976
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.1|^8.2|^8.3
- illuminate/support: ^9.0|^10.0|^11.0|^12.0
- illuminate/view: ^9.0|^10.0|^11.0|^12.0
Requires (Dev)
- gajus/dindent: ^2.0
- orchestra/testbench: ^7.0|^8.0|^9.0|^10.0
- phpunit/phpunit: ^9.0|^10.0|^11.0
This package is auto-updated.
Last update: 2025-03-14 19:24:09 UTC
README
Laravel Umami
This packages consist of a larvel component to be used with your own umami analytics server.
Installation
You can install the package via composer:
composer require b4mtech/laravel-umami
Publish Items
You should publish the config using the following command:
php artisan vendor:publish --provider="B4mtech\LaravelUmami\LaravelUmamiServiceProvider" --tag="umami-config"
If you want to customize the blade component:
php artisan vendor:publish --provider="B4mtech\LaravelUmami\LaravelUmamiServiceProvider" --tag="umami-view-component"
Usage
As long as the UMAMI_WEBSITE_ID
is set the blade component will be displayed. The following will need to be added inside your head
html tags.
@showUmami <x-laravel-umami::umami /> @endshowUmami
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email mark@bandmtechnologies.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.