Laravel does not care that it isnt laravel related
- Install package using composer (ignore all the other methods)
- Put this inside a controller to try it out
try {
$client = new RouterOS\Client('192.168.88.1', 'admin', 'password');
return 'OK'; //is echo in example
} catch (Exception $e) {
die($e);
}