content = $content; } public function via($notifiable) { return sysConfig('node_blocked_notification'); } public function toMail($notifiable) { return (new MailMessage) ->subject(trans('notification.node_block')) ->line(trans('notification.block_report')) ->line($this->content); } public function toCustom($notifiable) { return [ 'title' => trans('notification.node_block'), 'content' => $this->content, ]; } }