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

86 lines
1.8 KiB
PHP
Raw Normal View History

2019-09-08 12:39:13 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-09-08 12:39:13 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-09-08 12:39:13 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-09-08 12:39:13 +02:00
*/
namespace App\Models;
2020-03-23 18:10:42 +01:00
use App\Utils\Traits\MakesDates;
2020-10-28 11:10:49 +01:00
use Illuminate\Database\Eloquent\Model;
2021-09-09 07:14:05 +02:00
use Illuminate\Database\Eloquent\SoftDeletes;
2019-09-08 12:39:13 +02:00
class ClientGatewayToken extends BaseModel
{
2020-03-23 18:10:42 +01:00
use MakesDates;
2021-09-09 07:14:05 +02:00
use SoftDeletes;
2020-03-23 18:10:42 +01:00
protected $casts = [
'meta' => 'object',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
];
2019-09-18 04:39:53 +02:00
protected $appends = [
'hashed_id',
];
2021-04-20 08:03:14 +02:00
protected $fillable = [
'token',
'routing_number',
'gateway_customer_reference',
'gateway_type_id',
'meta',
2021-07-01 07:56:44 +02:00
'client_id',
2021-04-20 08:03:14 +02:00
];
public function getEntityType()
{
return self::class;
}
public function client()
{
2021-09-02 08:17:46 +02:00
return $this->belongsTo(Client::class)->withTrashed();
}
2019-09-08 12:39:13 +02:00
public function gateway()
{
2020-07-08 04:20:44 +02:00
return $this->hasOne(CompanyGateway::class, 'id', 'company_gateway_id');
}
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()
{
2021-09-02 08:17:46 +02:00
return $this->belongsTo(Company::class);
}
2019-09-08 12:39:13 +02:00
public function user()
{
2021-09-02 08:17:46 +02:00
return $this->belongsTo(User::class)->withTrashed();
}
2020-03-23 18:10:42 +01:00
/**
* Retrieve the model for a bound value.
*
2020-10-28 11:10:49 +01:00
* @param mixed $value
* @param null $field
* @return Model|null
*/
2021-04-20 08:03:14 +02:00
public function resolveRouteBinding($value, $field = null)
{
return $this
->where('id', $this->decodePrimaryKey($value))->firstOrFail();
}
}