Skip to content

csgt/laravel-notification-channel-conceptomovil

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Conceptomovil notifications channel for Laravel 5.4+

Latest Version on Packagist Software License Total Downloads

This package makes it easy to send [Conceptomovil notifications] with Laravel 5.4.

Contents

Installation

You can install the package via composer:

composer require csgt/notification-channel-conceptomovil

You must install the service provider:

// config/app.php
'providers' => [
    ...
    NotificationChannels\Conceptomovil\ConceptomovilProvider::class,
],

Setting up your Conceptomovil account

Add your Conceptomovil Account SID, Auth Token, and From Number (optional) to your config/services.php:

// config/services.php
...
'conceptomovil' => [
    'url'     => env('CONCEPTO_MOVIL_URL'),
    'token'   => env('CONCEPTO_MOVIL_TOKEN'),
    'apiKey'  => env('CONCEPTO_MOVIL_KEY'),
    'country' => env('CONCEPTO_MOVIL_COUNTRY'),
    'dial'    => env('CONCEPTO_MOVIL_DIAL'),
    'tag'     => env('CONCEPTO_MOVIL_TAG'),
],
...

Usage

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

use NotificationChannels\Conceptomovil\ConceptomovilChannel;
use NotificationChannels\Conceptomovil\ConceptomovilMessage;
use Illuminate\Notifications\Notification;

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

    public function toConceptomovil($notifiable)
    {
        return (new ConceptomovilMessage())
            ->content("Your {$notifiable->service} account was approved!");
    }
}

In order to let your Notification know which phone are you sending/calling to, the channel will look for the celular attribute of the Notifiable model. If you want to override this behaviour, add the routeNotificationForConceptomovil method to your Notifiable model.

public function routeNotificationForConceptomovil()
{
    return $this->mobile;
}

Available Message methods

ConceptomovilSmsMessage

  • from(''): Accepts a phone to use as the notification sender.
  • content(''): Accepts a string value for the notification body.

Changelog

Please see CHANGELOG for more information what has changed recently.

Security

If you discover any security related issues, please email jgalindo@cs.com.gt instead of using the issue tracker.

Contributing

Please see CONTRIBUTING for details.

Credits

License

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

Versions

Package Version Laravel Version
5.* 5.4+
6.* 9

About

Notification channel Concepto Movil

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages