order = $order; } public function toWechat($notifiable) { $app = app('wechat.official_account'); if ($notifiable->openid) { $str = '您的订单已经成功发货!!' . "\r\n\r\n"; $str .= '订单号:' . $this->order->orderid . "\r\n"; $str .= '商品名称:' . $this->order->detail->item->goods->title . "\r\n"; $str .= '商品数量:' . $this->order->details()->sum('number') . "\r\n"; $str .= '快递公司:' . $this->order->express->company ?? '' . "\r\n"; $str .= '快递单号:' . $this->order->express->number ?? '' . "\r\n"; $str .= "order->orderid) . "'>点击查看详情"; $app->customer_service->message($str)->to($notifiable->openid)->send(); } } public function toArray($notifiable) { return [ // ]; } }