1. Go to this page and download the library: Download atomjoy/smsapisms library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use App\Models\User;
use Atomjoy\Sms\Notifications\SendSms;
use Illuminate\Support\Facades\Notification;
use Illuminate\Support\Facades\Route;
// Smsapi sms
Route::get('/sms', function () {
try {
$user = User::first();
// Send smss
$user->notify(
new SendSms(
'New Order [%idzdo:smsapi.pl/panel%]',
['48100100100', '44200200200']
)
);
// Or with
Notification::sendNow(
$user,
new SendSms(
'New Order [%idzdo:smsapi.pl/panel%]',
['48100100100', '44200200200']
)
);
} catch (\Exception $e) {
return $e->getMessage();
}
return 'Message has been send.';
});
use Atomjoy\Sms\Events\SmsSent;
use Atomjoy\Sms\Events\SmsSentError;
// ...
sh
php artisan vendor:publish --tag=smsapisms-config --force
sh
php artisan serve --host=localhost --port=8000
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.