Package Data | |
---|---|
Maintainer Username: | superbalist |
Maintainer Contact: | info@superbalist.com (Superbalist.com a division of Takealot Online (Pty) Ltd) |
Package Create Date: | 2016-02-04 |
Package Last Update: | 2022-07-11 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2023-05-29 03:14:58 |
Package Statistics | |
---|---|
Total Downloads: | 130,652 |
Monthly Downloads: | 584 |
Daily Downloads: | 0 |
Total Stars: | 9 |
Total Watchers: | 42 |
Total Forks: | 4 |
Total Open Issues: | 0 |
A Laravel Zendesk library for integrating with the Zendesk API
This package provides a Laravel service provider and facade for the zendesk/zendesk_api_client_php package.
composer require superbalist/laravel-zendesk
Register the service provider in app.php
'providers' => array(
'Superbalist\Zendesk\ZendeskServiceProvider',
)
Register the facade in app.php
'aliases' => array(
'Zendesk' => 'Superbalist\Zendesk\ZendeskFacade',
)
Create a services.php config file.
<?php
return array(
'zendesk' => array(
'subdomain' => '[[your zendesk subdomain]]',
'username' => '[[your zendesk username]]',
'token' => '[[your zendesk api token]]',
),
);
Please see https://github.com/zendesk/zendesk_api_client_php for full documentation on the core API.
All functions provided by the core API are available behind the Zendesk
facade in Laravel.
use Zendesk;
// get all tickets
$zendesk = Zendesk::tickets()->findAll();
// create a new ticket
$ticket = Zendesk::tickets()->create([
'subject' => 'The quick brown fox jumps over the lazy dog',
'comment' => [
'body' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' .
'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'
],
'priority' => 'normal'
]);