Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pezhvak/laravel-sms

Laravel SMS Service Provider
https://github.com/pezhvak/laravel-sms

Last synced: about 2 months ago
JSON representation

Laravel SMS Service Provider

Awesome Lists containing this project

README

        

# Laravel-SMS
Laravel SMS Service Provider

## Installation

Run the following command in your laravel directory:

```composer require pezhvak/laravel-sms```

## Setup

1. In `/config/app.php`, add the following to `providers`:

```
Pezhvak\SMS\SmsServiceProvider::class,
```
and the following to `aliases`:
```
'SMS' => Pezhvak\SMS\Facades\SMS::class,
```
2. Run `php artisan vendor:publish`.
3. Enter your api data in `/config/SMS.php`.

## Usage