Logo Beartropy Alert System

Alert System

Installation
Get started with Alert System in just a few steps.

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-migrations
2php 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-seeders
2php artisan db:seed --class=AlertTypesTableSeeder
3php artisan db:seed --class=AlertChannelsTableSeeder