1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/ClientGatewayToken.php

69 lines
1.5 KiB
PHP
Raw Normal View History

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