The Laravel package for the ping2.me.
composer require ping2me/laravelUpdate your config/services.php file with the following:
// other services
'ping2me' => [
'endpoint' => env('PING2ME_ENDPOINT'),
],So you can set up your endpoint in your .env file:
PING2ME_ENDPOINT=@daudau/ping2me\Ping2Me\Laravel\Facades\Ping::send('Hello world!');
// or
ping('Hello world!');Then the message will be sent to you Telegram (or Discord, Slack) channel immediately.
Don't worry about performance, the package will send the request in the background if your server installed curl (which is almost exist in every server).
So there will be almost zero delay about the http request.