mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
b3eb2ae3b4
* Working on subscriptions * Implement return type in models * Subscription implementation * Improvements to handling importation of large accountS * Loggin imports * Activate collector * Improve memory usage of import script * Appen Tags into emails - fix companygatewaytransformer
74 lines
1.6 KiB
PHP
74 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. 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;
|
|
use App\Models\GatewayType;
|
|
use App\Models\User;
|
|
use App\Utils\Traits\MakesDates;
|
|
|
|
class ClientGatewayToken extends BaseModel
|
|
{
|
|
use MakesDates;
|
|
|
|
protected $casts = [
|
|
'meta' => 'object',
|
|
'updated_at' => 'timestamp',
|
|
'created_at' => 'timestamp',
|
|
'deleted_at' => 'timestamp',
|
|
];
|
|
|
|
public function getEntityType()
|
|
{
|
|
return ClientGatewayToken::class;
|
|
}
|
|
|
|
public function client()
|
|
{
|
|
return $this->hasOne(Client::class)->withTrashed();
|
|
}
|
|
|
|
public function gateway()
|
|
{
|
|
return $this->hasOne(CompanyGateway::class);
|
|
}
|
|
|
|
public function gateway_type()
|
|
{
|
|
return $this->hasOne(GatewayType::class, 'id', 'gateway_type_id');
|
|
}
|
|
|
|
public function company()
|
|
{
|
|
return $this->hasOne(Company::class);
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->hasOne(User::class)->withTrashed();
|
|
}
|
|
|
|
/**
|
|
* Retrieve the model for a bound value.
|
|
*
|
|
* @param mixed $value
|
|
* @return \Illuminate\Database\Eloquent\Model|null
|
|
*/
|
|
public function resolveRouteBinding($value)
|
|
{
|
|
return $this
|
|
->where('id', $this->decodePrimaryKey($value))->firstOrFail();
|
|
}
|
|
}
|