PHPackages                             csgt/notification-channel-conceptomovil - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. csgt/notification-channel-conceptomovil

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

csgt/notification-channel-conceptomovil
=======================================

Notification channel Concepto Movil.

v6.07(2y ago)01.1kMITPHPPHP ^8.0.0

Since May 25Pushed 8mo ago2 watchersCompare

[ Source](https://github.com/csgt/laravel-notification-channel-conceptomovil)[ Packagist](https://packagist.org/packages/csgt/notification-channel-conceptomovil)[ Docs](https://github.com/csgt/laravel-notification-channels-conceptomovil)[ RSS](/packages/csgt-notification-channel-conceptomovil/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (18)Used By (0)

Conceptomovil notifications channel for Laravel 5.4+
====================================================

[](#conceptomovil-notifications-channel-for-laravel-54)

[![Latest Version on Packagist](https://camo.githubusercontent.com/13841cfbce5ab3fe2665ca2a29714cb06456fcc237de94c1e277a38330f62953/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f637367742f6e6f74696669636174696f6e2d6368616e6e656c2d636f6e636570746f6d6f76696c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/csgt/notification-channel-conceptomovil)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/3a393db743b160742bdd29830bd02c89d80541ceb4adae4791500d1d66b55d5e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f637367742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d636f6e636570746f6d6f76696c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/csgt/notification-channel-conceptomovil)

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

Contents
--------

[](#contents)

- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

Installation
------------

[](#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

[](#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
-----

[](#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

[](#available-message-methods)

#### ConceptomovilSmsMessage

[](#conceptomovilsmsmessage)

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

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Security
--------

[](#security)

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

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [CS](https://github.com/csgt)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Versions
--------

[](#versions)

Package VersionLaravel Version5.\*5.4+6.\*9

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance43

Moderate activity, may be stable

Popularity16

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 72.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~166 days

Recently: every ~187 days

Total

17

Last Release

251d ago

Major Versions

5.8.x-dev → v6.0.02023-08-17

PHP version history (5 changes)5.6.1PHP &gt;=7.0.0

v6.0.2PHP &gt;=8.0.0

v6.0.4PHP ^8.0.2

v6.0.5PHP ^8.0.0

v6.0.8PHP ^7.2.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/0a0497db62ed2fba1bf1861e913f31ff83470ff152e44a9cee126a4774822c46?d=identicon)[csgt](/maintainers/csgt)

---

Top Contributors

[![menene](https://avatars.githubusercontent.com/u/1200545?v=4)](https://github.com/menene "menene (8 commits)")[![jgalindosl](https://avatars.githubusercontent.com/u/66330140?v=4)](https://github.com/jgalindosl "jgalindosl (3 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/csgt-notification-channel-conceptomovil/health.svg)

```
[![Health](https://phpackages.com/badges/csgt-notification-channel-conceptomovil/health.svg)](https://phpackages.com/packages/csgt-notification-channel-conceptomovil)
```

###  Alternatives

[tijsverkoyen/css-to-inline-styles

CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.

5.8k505.3M227](/packages/tijsverkoyen-css-to-inline-styles)[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
