Send SMS within a Laravel Application. (Check Here for the complete tutorial)
Clone this repository
git clone https://github.com/yemiwebby/sendSms-laravel.git
cd sendSms-laravel
composer install
cp .env.example .env
php artisan key:generate
Create a database and update .env file with database credentials
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=Your-database-name
DB_USERNAME=Your-database-username
DB_PASSWORD=Your-database-password
php artisan migrate
php artisan serve