invoiceninja/app/Models/ClientGatewayToken.php

55 lines
1 KiB
PHP
Raw Normal View History

2019-09-08 20:39:13 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use App\Models\Client;
use App\Models\Company;
use App\Models\CompanyGateway;
2019-09-18 12:39:53 +10:00
use App\Models\GatewayType;
2019-09-08 20:39:13 +10:00
use App\Models\User;
class ClientGatewayToken extends BaseModel
{
2019-09-18 12:39:53 +10:00
protected $casts = [
'meta' => 'object',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
2019-09-18 12:39:53 +10:00
];
2019-09-08 20:39:13 +10:00
public function client()
{
return $this->hasOne(Client::class);
}
public function gateway()
{
return $this->hasOne(CompanyGateway::class);
}
2019-09-18 12:39:53 +10:00
public function gateway_type()
{
2019-09-19 20:16:41 +10:00
return $this->hasOne(GatewayType::class, 'id','gateway_type_id');
2019-09-18 12:39:53 +10:00
}
2019-09-08 20:39:13 +10:00
public function company()
{
return $this->hasOne(Company::class);
}
public function user()
{
return $this->hasOne(User::class);
}
}