承接 yna/laravel-cellact 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

yna/laravel-cellact

Composer 安装命令:

composer require yna/laravel-cellact

包简介

Cellact Notifications channel for Laravel 5.3.

README 文档

README

This package makes it easy to send notifications using cellact with Laravel 5.3+.

Installation

You can install the package via composer:

composer require yna/laravel-cellact

Then you must install the service provider:

// config/app.php
'providers' => [
    ...
    Yna\Cellact\CellactServiceProvider::class,
],

Setting up the Cellact service

Add your Cellact account, user, password, from and company to your config/services.php:

// config/services.php
...
'cellact' => [
    'user' => env('CELLACT_USER'),
    'password' => env('CELLACT_PASSWORD'),
    'company' => env('CELLACT_COMPANY'),
    'from' => env('CELLACT_FROM'),
]
...

Usage

You can use the channel in your via() method inside the notification:

use Illuminate\Notifications\Notification;
use Yna\Cellact\CellactMessage;
use Yna\Cellact\CellactChannel;

class AccountApproved extends Notification
{
    public function via($notifiable)
    {
        return [CellactChannel::class];
    }

    public function toBSms($notifiable)
    {
        return CellactMessage::create("Task #{$notifiable->id} is complete!");
    }
}

In your notifiable model, make sure to include a routeNotificationForPort2sms() method, which return the phone number.

public function routeNotificationForCellact()
{
    return $this->phone;
}

Available methods

from(): Sets the sender's name or phone number.

content(): Set a content of the notification message.

Security

If you discover any security related issues, please email security@yna.co.il instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 20
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-08-29

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固