Laravel feedback widget for Tend

Maintainers

Package info

github.com/chocolatelabs/tend

pkg:composer/chocolatelabs/tend

Transparency log

Fund package maintenance!

jakedohm

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-08-30 03:15 UTC

This package is auto-updated.

Last update: 2026-08-30 03:24:22 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Laravel package that injects the Tend feedback widget into your app and sends reports to Tend.

Installation

composer require chocolatelabs/tend

Add your project credentials from the Tend dashboard:

TEND_PROJECT_ID=
TEND_KEY=

The widget is injected on HTML responses once both values are set. You can publish the config if you want to change placement or disable injection:

php artisan vendor:publish --tag="tend-config"
return [
    'enabled' => env('TEND_ENABLED', true),
    'position' => env('TEND_POSITION', 'bottom-right'),
    'url' => env('TEND_URL', 'https://usetend.dev'),
    'project_id' => env('TEND_PROJECT_ID'),
    'key' => env('TEND_KEY'),
];

TEND_URL is only needed to point a local app at a non-production Tend instance.

Optionally publish the widget views:

php artisan vendor:publish --tag="tend-views"

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.