This package makes it easy to send Kavenegar SMS notifications with Laravel 5.3 or 5.4.
You can install the package via composer:
composer require kavenegar/laravel-notification
You must install the service provider:
// config/app.php
'providers' => [
...
Kavenegar\LaravelNotification\KavenegarServiceProvider::class,
],
Add your Kavenegar Account Key and Sender Number (optional) to your config/services.php
:
// config/services.php
...
'kavenegar' => [
'key' => env('KAVENEGAR_API_KEY'),
'sender' => env('KAVENEGAR_SENDER')
],
...
Now you can use the channel in your via()
method inside the notification:
use Kavenegar\LaravelNotification\KavenegarChannel;
use Illuminate\Notifications\Notification;
class HappyNewYear extends Notification
{
public function via($notifiable)
{
return [KavenegarChannel::class];
}
public function toSMS($notifiable)
{
return 'Happy new year :D';
}
}
In order to let your Notification know which phone number you are sending to, add the routeNotificationForSms
method to your Notifiable model e.g your User Model
public function routeNotificationForSms()
{
return $this->phone; // where `phone` is a field in your users table;
}
Bug fixes, docs, and enhancements welcome! Please let us know [email protected]
کاوه نگار یک وب سرویس ارسال و دریافت پیامک و تماس صوتی است که به راحتی میتوانید از آن استفاده نمایید.
اگر در وب سرویس کاوه نگار عضو نیستید میتوانید از لینک عضویت ثبت نام و اکانت آزمایشی برای تست API دریافت نمایید.
برای مشاهده اطلاعات کامل مستندات وب سرویس پیامک به صفحه مستندات وب سرویس مراجعه نمایید.
در صورتی که مایل هستید راهنمای فارسی کیت توسعه کاوه نگار را مطالعه کنید به صفحه کد ارسال پیامک مراجعه نمایید.
برای مطالعه بیشتر به صفحه معرفی وب سرویس اس ام اس کاوه نگار مراجعه نمایید .
اگر در استفاده از کیت های سرویس کاوه نگار مشکلی یا پیشنهادی داشتید ما را با یک Pull Request یا ارسال ایمیل به [email protected] خوشحال کنید.