ohtarr/service-now-model
Composer 安装命令:
composer require ohtarr/service-now-model
包简介
PHP7 Laravel5 component to connect to ServiceNow Table API
README 文档
README
A laravel Model to access service now table api
You are nutz if you use this...ABSolutELY MENtal!:+1:
Requires Laravel 5.x and GuzzleHttp
How to use :
Set the following variables in your laravel .env file:
'SNOWBASEURL' = https://yourcompany.service-now.com/api/now/v1/table
'SNOWUSERNAME' =
'SNOWPASSWORD' =
Create a new model in your Laravel App folder PER table and set $table. Example:
ServiceNowIncident.php******
<?php
namespace App;
use ohtarr\ServiceNowModel;
use GuzzleHttp\Client as GuzzleHttpClient;
class ServiceNowIncident extends ServiceNowModel
{
protected $guarded = [];
public $table = "incident";
public function __construct(array $attributes = [])
{
$this->snowbaseurl = env('SNOWBASEURL'); //https://mycompany.service-now.com/api/now/v1/table
$this->snowusername = env("SNOWUSERNAME");
$this->snowpassword = env("SNOWPASSWORD");
parent::__construct($attributes);
}
}
and in your application you can utilize it :
$incident = new App\ServiceNowIncident;
$incident->where("number","=","INC2321232")->get();
or
$incident = App\ServiceNowIncident::where("number","=","INC2321232")->first()
or
$incident = App\ServiceNowIncdient::find("1782fd1d6fcb87005d6dcd364b3ee4c1");
or if you are brave:
$incidents = App\ServiceNowIncident::all();
统计信息
- 总下载量: 5.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 3
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2017-12-14