create service and command for sending reports

This commit is contained in:
2025-08-03 11:08:14 +03:30
parent 5085f22a1d
commit 23587ae958
9 changed files with 400 additions and 0 deletions

View File

@@ -127,6 +127,29 @@ return [
'path' => storage_path('logs/laravel.log'),
],
'send_call_stats_report' => [
'driver' => 'single',
'path' => storage_path('logs/send_call_stats_report.log'),
'level' => 'debug',
],
'send_keypress_stats_report' => [
'driver' => 'single',
'path' => storage_path('logs/send_keypress_stats_report.log'),
'level' => 'debug',
],
'send_people_message_stats_report' => [
'driver' => 'single',
'path' => storage_path('logs/send_people_message_stats_report.log'),
'level' => 'debug',
],
'send_system_message_stats_report' => [
'driver' => 'single',
'path' => storage_path('logs/send_system_message_stats_report.log'),
'level' => 'debug',
],
],
];