LoginSignup
5
1

More than 5 years have passed since last update.

LaravelからSlackのメッセージを改行させる

Posted at

文字列をダブルクォートで囲って改行文字を使うと改行されます。

<?php

use Illuminate\Notifications\Messages\SlackMessage;

class CustomSlackMessage extends SlackMessage
{
    public function __construct() {
        $this->content = "1行目\n"
            . "2行目\n"
            . "3行目";
    }
}

ちなみにシングルクォートだと改行されません。

ソースはgithubのコメント https://github.com/cleentfaar/slack/issues/21 から

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1