This is a Laravel Package to use Banckle.Helpdesk SDK for PHP in Laravel applications quickly and easily
banckle/helpdesk-laravel is a Laravel package for this is a laravel package to use banckle.helpdesk sdk for php in laravel applications quickly and easily.
It currently has 0 GitHub stars and 13 downloads on Packagist.
Install it with composer require banckle/helpdesk-laravel.
Discover more Laravel packages by banckle
or browse all Laravel packages to compare alternatives.
Last updated
#Banckle.Helpdesk for Laravel
This is a Laravel Package to use Banckle.Helpdesk SDK for PHP in Laravel applications quickly and easily.
Add the following lines to your composer.json file.
require: {
"banckle/helpdesk-sdk-php": "dev-master",
"banckle/helpdesk-laravel": "dev-master"
}
Run from terminal.
composer update
Add package to the list of providers. In config/app.php, add the following line to the providers array.
'Banckle\Helpdesk\HelpdeskServiceProvider',
Publish config files from the terminal.
php artisan config:publish banckle/helpdesk-laravel
Edit the new config file in the config/packages/banckle/helpdesk-laravel and enter your Banckle API Key, email & password.
return array(
'banckleAccountUri' => 'https://apps.banckle.com/api/v2',
'banckleHelpdeskUri' => 'https://helpdesk.banckle.com/public/api/v1',
'apiKey' => '',
'email' => '',
'password' => ''
);
In config/packages/banckle, rename helpdesk-laravel to helpdesk
Anywhere in your application when you need to access class, just do:
// To Generate token BanckleHelpdesk::getToken(); BanckleHelpdesk::get($apiName, $token);
This will return you object of class and you can access properties and methods of class.