kurbanov-developer/eskiz-notification-channel
最新稳定版本:v2.1.2
Composer 安装命令:
composer require kurbanov-developer/eskiz-notification-channel
包简介
Eskiz SMS Notification Channel for Laravel
README 文档
README
Eskiz Notifications Channel for Laravel
Installation
To integrate the Eskiz notifications channel with your Laravel application, you can use Composer. Run the following command in your terminal:
composer require kurbanov-developer/eskiz-notification-channel
After successful installation, update your .env file with the following configuration:
ESKIZ_EMAIL=your@email.com ESKIZ_PASSWORD=your_secret_code_from_dashboard
Additionally, make changes in your services.php file to include Eskiz configuration:
Copy code
'eskiz' => [ 'email' => env('ESKIZ_EMAIL', ''), 'password' => env('ESKIZ_PASSWORD', ''), ],
Official Documentation Explore the detailed documentation at Eskiz Postman Documentation for comprehensive information.
Usage
To utilize the Eskiz notification channel, add the following method to your User model:
Copy code
public function routeNotificationForEskiz() { return $this->mobile; }
Additionally, employ the provided example to send notifications using Eskiz in your notification class:
Copy code
public function toEskiz($notifiable) { return (new EskizMessage()) ->content("Your notification content goes here"); }
About the Author
This Laravel package is developed and maintained by Kurbonov Ismoil.
Website: kurbonov.ru
Feel free to contact the author for any inquiries or support related to this package.
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Security
If you discover any security related issues, please email kurbanov.developer@yandex.ru instead of using the issue tracker.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 24
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-10-18