shlogg · Early preview
Paul Redmond @paulredmond

Laravel Teams Notification Package Explained

Send notifications to Microsoft Teams with Laravel's Teams Notification package. Send normal messages, messages with details, or use custom logging channel. Supports success, warning, error & JSON blocks.

The Teams Notification package for Laravel lets you send notifications to Microsoft Teams. You can send normal messages, messages with additional details, and even use this package's custom logging channel:
use Osama\LaravelTeamsNotification\TeamsNotification; // Normal messagenew TeamsNotification()->sendMessage("System Notification"); // Message with additional detailsnew TeamsNotification()->sendMessage("System Notification", [    'Server' => 'Production',    'Status' => 'Running',    'Uptime' => '24 days']);  // Send a tracetry {    // ...} catch (\Exception $exception) {    new TeamsNotif...