PHP Package: laravel/vonage-notification-channel
This Laravel package integrates Vonage SMS notifications seamlessly into your application.
Package Description
The Vonage Notification Channel for Laravel allows you to send SMS notifications using the Vonage API. It provides a simple and efficient way to notify users via SMS, enhancing your application's communication capabilities. With support for customizable message templates and delivery tracking, this package streamlines the integration of SMS notifications into your Laravel projects.
Code Integration Example
Make sure to include the correct namespace and class paths for proper usage.
<?php
// Example from PHPlibraries.com
require_once 'libs/laravel/vonage-notification-channel/lib_version/autoload.php';
use Illuminate\Notifications\Channels\VonageChannel;
use Illuminate\Notifications\VonageMessage;
use Vonage\Notifications\VonageMessage;
$obj = new Illuminate\Notifications\Channels\VonageChannel();
echo "✅ Example created successfully.";
?>
We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.