芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/app/Notifications/RejectLoanRequest.php
loan = $loan; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [\App\Channels\TwilioSms::class, 'database']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->line('The introduction to the notification.') ->action('Notification Action', url('/')) ->line('Thank you for using our application!'); } /** * Get the sms representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toTwilioSms($notifiable) { $amount = decimalPlace($this->loan->applied_amount, currency($this->loan->currency->name)); $dateTime = $this->loan->updated_at; return (new SmsMessage()) ->setContent("Dear Sir, Your loan request of $amount has been rejected on $dateTime") ->setRecipient($notifiable->country_code . $notifiable->phone); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { $amount = decimalPlace($this->loan->applied_amount, currency($this->loan->currency->name)); $dateTime = $this->loan->updated_at; return [ 'message' => "Dear Sir, Your loan request of $amount has been rejected on $dateTime", ]; } }