-
-
Notifications
You must be signed in to change notification settings - Fork 2
Customization
teaminfinitydev edited this page Jun 23, 2025
·
1 revision
Modify config/activity-log-discord.php
to customize event appearance:
'events' => [
'user.login' => [
'enabled' => true,
'color' => 0x00ff00, // Green
'icon' => '🔐',
],
'order.failed' => [
'enabled' => true,
'color' => 0xff0000, // Red
'icon' => '❌',
],
],
For high-traffic applications, enable queue processing:
// config/activity-log-discord.php
'queue_notifications' => true,
'queue_connection' => 'redis', // or your preferred connection
'queue_name' => 'discord-notifications',
Don't forget to run your queue workers:
php artisan queue:work