Alert System
Install via Composer
Install the package via composer:
1composer require beartropy/alert-system
Publish Migrations
Publish and run the database migrations:
1php artisan vendor:publish --tag=alert-system-migrations2php artisan migrate
Publish Configuration
Publish the configuration file to customize behavior (Blade layout, allowed environments, Telegram settings, etc.):
1php artisan vendor:publish --tag=alert-system-config
Publish Seeders (Optional)
To get started quickly with default types and channels:
1php artisan vendor:publish --tag=alert-system-seeders2php artisan db:seed --class=AlertTypesTableSeeder3php artisan db:seed --class=AlertChannelsTableSeeder