Laravel Package to Integrate TextLocal.in SMS.
You can install the package via composer:
composer require rudolphp/laravel-textlocal
You can publish and run the migrations with:
php artisan vendor:publish --tag="textlocal-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="textlocal-config"
This is the contents of the published config file:
return [
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="textlocal-views"
$sms = new LaravelTextlocal();
// sender, optional
$sms->send('message', 'mobile number','sender');
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.