added notification system for successful payment

This commit is contained in:
Gitea
2025-06-20 20:34:57 +05:30
parent dbe6d49c49
commit 3afa74ecc2
3 changed files with 52 additions and 0 deletions

32
app/NotifyMe.php Normal file
View File

@@ -0,0 +1,32 @@
<?php
namespace App;
trait NotifyMe
{
function sendTelegramNotification($message) {
$botToken = config('app.notify_tg_bot_token');
$chatId = config('app.notify_tg_chat_id');
if (!$botToken || !$chatId) {
\Log::error('Telegram bot token or chat ID not configured');
return false;
}
$url = "https://api.telegram.org/bot{$botToken}/sendMessage";
$data = [
'chat_id' => $chatId,
'text' => $message,
'parse_mode' => 'HTML'
];
try {
$response = \Http::post($url, $data);
return $response->successful();
} catch (\Exception $e) {
\Log::error('Failed to send Telegram notification: ' . $e->getMessage());
return false;
}
}
}