Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Create a Laravel notification via Slack when batch jobs are finished

arm4
March 02, 2019

Create a Laravel notification via Slack when batch jobs are finished

arm4

March 02, 2019
Tweet

More Decks by arm4

Other Decks in Programming

Transcript

  1. 手順 ◦ Guzzleをインストール composer require guzzlehttp/guzzle ※Laravel 5.8の場合 composer require

    laravel/slack-notification-channel ◦ Notificationクラスの作成 php artisan make:notification SlackPosted ◦ Notificationクラス(SlackPosted)の実装 ◦ Slack通知サービスクラスを作成&実装 ◦ Seederを作成&実装 php artisan make:seeder SampleSeeder 8