kavenegar / laravel-notification
laravel notificatiion channel for Kavenegar
Installs: 27 989
Dependents: 1
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 5
Type:laravel-package
Requires
This package is auto-updated.
Last update: 2024-10-29 05:04:51 UTC
README
This package makes it easy to send Kavenegar SMS notifications with Laravel 5.3 or 5.4.
Contents
Installation
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, ],
Setting up your Kavenegar account
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') ], ...
Usage
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; }
Contributing
Bug fixes, docs, and enhancements welcome! Please let us know support@kavenegar.com
راهنما
معرفی سرویس کاوه نگار
کاوه نگار یک وب سرویس ارسال و دریافت پیامک و تماس صوتی است که به راحتی میتوانید از آن استفاده نمایید.
ساخت حساب کاربری
اگر در وب سرویس کاوه نگار عضو نیستید میتوانید از لینک عضویت ثبت نام و اکانت آزمایشی برای تست API دریافت نمایید.
مستندات
برای مشاهده اطلاعات کامل مستندات وب سرویس پیامک به صفحه مستندات وب سرویس مراجعه نمایید.
راهنمای فارسی
در صورتی که مایل هستید راهنمای فارسی کیت توسعه کاوه نگار را مطالعه کنید به صفحه کد ارسال پیامک مراجعه نمایید.
اطالاعات بیشتر
برای مطالعه بیشتر به صفحه معرفی وب سرویس اس ام اس کاوه نگار مراجعه نمایید .
اگر در استفاده از کیت های سرویس کاوه نگار مشکلی یا پیشنهادی داشتید ما را با یک Pull Request یا ارسال ایمیل به support@kavenegar.com خوشحال کنید.