This package is an extension of the official laravel/slack-notification-channel
package.
Note Thes core notifications package has finally built-in support for these rich Slack messages, and as such you should use the official package if you are able.
https://laravel.com/docs/10.x/notifications#formatting-slack-notifications
Instead of requiring the official package, you should require this one instead.
composer require nathanheffley/laravel-slack-blocks
Because this package is built on top of the official one, you'll have all the functionality found in the official docs.
You can follow those instructions with the slight adjustment of requiring the classes from NathanHeffley\LaravelSlackBlocks
instead of Illuminate\Notifications
.
Everything supported in the base Illuminate Notifications classes is supported in these extended classes.
If you want to add a block to your Slack message, you need to add the block in an attachment.
use NathanHeffley\LaravelSlackBlocks\Messages\SlackMessage;
// ...
public function toSlack($notifiable)
{
return (new SlackMessage)
->attachment(function ($attachment) {
$attachment->block(function ($block) {
$block
->type('section')
->text([
'type' => 'mrkdwn',
'text' => '*Hello World!*',
]);
});
});
}
To see all the possible fields you can add to a block, check out the official Slack Blocks documentation.
To help, some blocks have been given dedicated helper functions on the attachment model itself. Currently there are methods for adding dividers and images.
(new SlackMessage)->attachment(function ($attachment) {
$attachment->imageBlock('http://placekitten.com/300/200', 'A cute kitten');
$attachment->dividerBlock();
$attachment->imageBlock('http://placekitten.com/300/200', 'A cute kitten', 'This is a titled cat image');
});