| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace App\Notifications;
- use App\Models\User;
- use Illuminate\Bus\Queueable;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Notifications\Messages\MailMessage;
- use Illuminate\Notifications\Notification;
- use NotificationChannels\Telegram\TelegramMessage;
- class PaymentReceived extends Notification implements ShouldQueue
- {
- use Queueable;
- private $amount;
- private $sn;
- public function __construct($sn, $amount)
- {
- $this->amount = $amount;
- $this->sn = $sn;
- }
- public function via($notifiable)
- {
- return sysConfig('payment_received_notification');
- }
- public function toMail($notifiable)
- {
- return (new MailMessage)
- ->subject(__('Payment Received'))
- ->line(__('Payment for #:sn has been received! Total amount: ¥:amount.', ['sn' => $this->sn, 'amount' => $this->amount]))
- ->action(__('Invoice Detail'), route('invoiceInfo', $this->sn));
- }
- public function toDataBase($notifiable)
- {
- return [
- 'sn' => $this->sn,
- 'amount' => $this->amount,
- ];
- }
- // todo: 需要重新审视发送对象
- public function toTelegram($notifiable)
- {
- foreach (User::role('Super Admin')->get() as $admin) {
- $message = sprintf(
- "💰成功收款%s元\n———————————————\n订单号:%s",
- $this->amount,
- $this->sn
- );
- return TelegramMessage::create()
- ->to($admin->telegram_user_id)
- ->token(sysConfig('telegram_token'))
- ->content($message);
- }
- }
- }
|