kevariable / laravel-slack-logging
Report your Errors onto Slack
Fund package maintenance!
kevariable
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0||^12.0
- laravel/slack-notification-channel: ^3.5
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.9||^3.0
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^10.0
- phpstan/extension-installer: ^1.3||^2.0
- phpstan/phpstan-deprecation-rules: ^1.1||^2.0
- phpstan/phpstan-phpunit: ^1.3||^2.0
- phpunit/phpunit: ^11.0.1
- spatie/laravel-ray: ^1.35
This package is auto-updated.
Last update: 2025-05-12 08:42:51 UTC
README
Laravel Slack Logging is a package that allows you to send Laravel logs directly to a Slack channel using webhooks. It provides an easy and efficient way to monitor your application's logs in real-time within your Slack workspace.
Preview
Installation
You can install the package via Composer:
composer require kevariable/laravel-slack-logging
You can publish the config file with:
php artisan vendor:publish --tag="laravel-slack-logging-config"
Usage
After installing the package, configure the Slack webhook URL in your .env
file:
SLACK_LOGGING_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK
Then, add the Slack logging channel to your config/logging.php
file:
'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => ['single', 'slack'], ... ], 'slack' => [ 'driver' => 'slack-logging', ... ], ],
Now, Laravel will send logs to Slack based on the configured log level.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.