承接 undjike/lmt-laravel-notification-channel 相关项目开发

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

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

undjike/lmt-laravel-notification-channel

最新稳定版本:v1.0.2

Composer 安装命令:

composer require undjike/lmt-laravel-notification-channel

包简介

Laravel Notification Channel based on LMT SMS service

README 文档

README

logo

Latest Stable Version License Total Downloads Dependents

Introduction

This is a package for Laravel Applications which enables you to send notifications through LMT SMS Channel.

The package uses LMT API Service to perform SMS dispatching.

Installation

This package can be installed via composer. Just type :

composer require undjike/lmt-laravel-notification-channel

Usage

After installation, configure your services in congig/services.php by adding :

<?php

return [
    //...

    'lmt' => [
        'key' => env('LMT_API_KEY'), // Your credentials are expected here
        'secret' => env('LMT_API_SECRET')
    ],
];

Once this is done, you can create your notification as usual.

<?php

namespace App\Notifications;

use Illuminate\Notifications\Notification;
use Undjike\LmtNotificationChannel\LmtChannel;
use Undjike\LmtNotificationChannel\LmtMessage;

class LmtNotification extends Notification
{
    /**
     * Get the notification's delivery channels.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function via($notifiable)
    {
        return [LmtChannel::class]; // or return 'lmt';
    }

    /**
     * @param $notifiable
     * @return mixed
     */
    public function toLmt($notifiable)
    {
        return LmtMessage::create()
            ->body('Type here you message content...')
            ->sender('Brand name');
        // or return 'Type here you message content...';
    }
}

To get this stuff completely working, you need to add this to your notifiable model.

    /**
     * Attribute to use when addressing LMT SMS notification
     *
     * @returns string|array
     */
    public function routeNotificationForLmt()
    {
        return $this->phone_number; // Can be a string or an array of valid phone numbers
    }

Enjoy !!!

License

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-07-18