Fork: https://github.com/botanio/sdk
composer require "lartie/laravel-botan:^1.0.0"
BOTAN_TOKEN=YOUR_BOT_TOKEN
You must install this service provider.
// config/app.php
'providers' => [
...
LArtie\LaravelBotan\LaravelBotanServiceProvider::class,
...
];
This package also comes with a facade, which provides an easy way to call the the class.
// config/app.php
'aliases' => [
...
'Botan' => LArtie\LaravelBotan\Facades\Botan::class,
...
];
Botan::track($message, 'Message');
Or
$result = Botan::shortenUrl($url, $userId);
The MIT License (MIT). Please see License File for more information.