Slack Laravel



Laravel/slack-notification-channel

You can now send Slack notifications from Your Laravel application! The DreamFactory team has relied on the Laravel framework for more than five years now, starting with the initial release of our namesake API management platform having been built atop Laravel 5.0. In the years since, our reliance on the framework has only increased; in addition to the DreamFactory platform we’ve built three other fairly complicated applications, two of which are used for internal dashboard purposes and the third being the trial registration and account management site for Genie (https://genie.dreamfactory.com/), our hosted DreamFactory environment. Docker download windows 10.

Utilizes Laravel's notifications to provide logging to slack at various levels. Inspired by Log4j. cr0wst/laravel-slack-log. In this episode we'll show you how to send slack messages from your laravel application. It's super easy to setup. In this video we'll walk you through creating a new Laravel app, including the GuzzleHttp Library, creating a new notification, and sending a test notification. Slack account; Ngrok; Composer globally installed; Set Up a New Laravel Project. If you don't have one already set up, we’ll need to install a fresh Laravel application. A guide on how to set up Laravel can be found in the official Laravel documentation. We also need to install the Twilio SDK for PHP in our project. In your terminal, navigate.

Like many companies, we’re also heavy Slack users, and rely on automated notifications from a variety of internal and third-party services. As it happens, integrating automated Slack notifications into a Laravel application is an extraordinarily simple process once you understand how the pieces go together. In this blog post I’ll walk you through a real-world example explaining how this is accomplished.

Did you know you can generate a full-featured, documented, and secure REST API in minutes using DreamFactory? Sign up for our free 14 day hosted trial to learn how! Our guided tour will show you how to create an API using an example MySQL database provided to you as part of the trial!

Slack Laravel

Configuring Your Laravel Application (Before sending Slack Notifications)

Before you can start sending Slack notifications from your Laravel application we’ll need to install the Slack notification channel package:

You’ll also need to install the “Incoming Webhooks” app in your Slack workspace. By doing so, you’ll be able to generate a unique URL which will be used to send messages to a designated Slack channel.

After clicking the “Add to Slack” button, you’ll be taken to the following screen:

Here you’re prompted to choose a channel where the incoming messages will be sent. As you can see in the screenshot, I’ve chosen a channel called #new-trials. If you haven’t yet created the channel, clicking the create a new channel link will cause a modal to open where you can create the destination channel. Docker client ubuntu.

Finally, click the “Add Incoming WebHooks Integration” button to generate the unique URL. Once you do, a confirmation notification stating “added an integration to this channel: incoming-webhook” will immediately be sent to the designated Slack channel. Also, the ensuing screen will present your newly generated webhook URL. Copy this URL to the clipboard (it will begin with https://hooks.slack.com), open your Laravel application’s .env file, and assign it to a configuration variable named something like SLACK_NOTIFICATION_WEBHOOK:

Generating the Slack Notification

Next we’ll write the code used to send Slack notifications. Fortunately, most of this work is boilerplate, beginning with generation of the notification class which defines the message:

This will generate a boilerplate notification class geared towards e-mail. You’ll find the class in your project’s app/Notifications directory. We’ll need to make a few modifications to this class in order to support Slack, beginning with referencing the SlackMessage class at the top of the file:

Next, change the via method to look like this:

Finally, delete the toMail and toArray methods, and in their place add the following toSlack method:

When finished, the class will look like this:

Slack laravel interview

Firing the Slack Notification

We’ve generated the Slack notification, however haven’t yet tied the notification into our application logic. There are two ways to do this:

  • Notification Trait: You’ll use the notification trait when you want to send a notification in conjunction an event associated with a specific model instance, such as a trial or product.
  • Notification Facade: You’ll use the notification facade when you want to send multiple notifications associated with a collection, such as multiple trials or products.

For this post we’ll focus on the notification trait. Suppose you want to send a Slack notification whenever a new trial is created. A model named Trial houses the application’s trial-related logic. Open the Trial model and add a reference to the Notifiable class:

Next add a reference to the Notifiable trait at the top of the class:

Finally, add a new method named routeNotificationForSlack which returns the webhook URL:

You can test the notification by firing up Tinker: Adobe illustrator mac os torrent.

Check your Slack channel and you should see a notification like that presented in the below screenshot:

While this notification confirms a successful integration, it isn’t exactly useful. Fortunately we can make some pretty simple modifications to the NewTrial notification class’ toSlack method to add some more context:

After making these changes, reload Tinker:

Laravel Slack Webhook

This time, you’ll see a Slack notification stating “Jason Gilmore created a new trial”. We can go even further though! Using a message attachment, we can add even more context:

Laravel

Return to Tinker one more time to test the results:

In a moment you should see a message similar to the following show up in Slack:

Moving Notification Logic Into Your Application

Slack laravel notification

Of course, in production you won’t be executing notifications from Tinker. An ideal location would likely be a trial controller’s store method, because that’s where data associated with a new trial would be persisted to the database. That store method might look something like this:

Laravel Slack Message

Did you know you can generate a full-featured, documented, and secure REST API in minutes using DreamFactory? Sign up for our free 14 day hosted trial to learn how! Our guided tour will show you how to create an API using an example MySQL database provided to you as part of the trial!

Other Useful Laravel Notification Packages

Slack is just one of many available Laravel notification packages. In addition to the notification options described in the Laravel documentation, at the time of this writing there were an additional 52 channels maintained by the Laravel community, including Twitter, Facebook, Twilio, and Microsoft Teams, among others. Head over to the aptly named Laravel Notification Channels website for a complete list.