PHP code example of tonci14 / laravel-eurosms

1. Go to this page and download the library: Download tonci14/laravel-eurosms 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/ */

    

tonci14 / laravel-eurosms example snippets



namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Tonci14\LaravelEuroSMS\EuroSmsService;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        $this->app->singleton(EuroSmsService::class, function () {
            return new EuroSmsService(
                config('sms.eurosms.integrationKey'),
                config('sms.eurosms.integrationID'),
                config('sms.eurosms.senderName')
            );
        });
    }

    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
    }
}

    $smsService->send("+421****", "Test sms content");

    $smsService->sendAsync("+421****", "Test sms content");