withdraw = $withdraw; } public function toWechat($notifiable) { $app = app('wechat.official_account'); if ($notifiable->openid) { $str = '恭喜您已经成功提现,请检查您的账户余额!!' . "\r\n\r\n"; $str .= '提现金额:' . number_format($this->withdraw->amount, 2) . "\r\n"; $str .= '实际到账金额:' . number_format($this->withdraw->take, 2) . "\r\n\r\n"; $str .= "点击查看详情"; $app->customer_service->message($str)->to($notifiable->openid)->send(); } } public function toArray($notifiable) { return [ // ]; } }