Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pezhvak/laravel-sms
- Owner: Pezhvak
- Created: 2015-11-16T21:25:21.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-24T16:06:08.000Z (almost 9 years ago)
- Last Synced: 2024-10-12T13:10:33.266Z (3 months ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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