ubrize/sales-lv

SMS sales.lv channel for Laravel 5.3+

v1.0 2019-08-05 08:40 UTC

This package is auto-updated.

Last update: 2024-04-07 00:24:33 UTC


README

Installation

You can install the package via composer:

composer require ubrize/sales-lv

Setting up sales.lv SMS notifications

Add sales.lv configuration to config/services.php:

// config/services.php

...
'saleslv' => [
    'key' => env('SALESLV_KEY'),
    'sender' => env('SALESLV_SENDER', 'Example Sender'),
    'endpoint' => env('SALESLV_ENDPOINT', 'https://traffic.sales.lv/API:0.14/'),
],
...