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

120 lines
4.4 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
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. 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;
2021-09-09 07:14:05 +02:00
use Illuminate\Database\Eloquent\SoftDeletes;
2019-09-08 12:39:13 +02:00
2023-03-08 08:33:42 +01:00
/**
* App\Models\ClientGatewayToken
*
* @property int $id
* @property int $company_id
* @property int|null $client_id
* @property string|null $token
* @property string|null $routing_number
* @property int $company_gateway_id
* @property string|null $gateway_customer_reference
* @property int $gateway_type_id
* @property int $is_default
* @property object|null $meta
* @property int|null $deleted_at
* @property int|null $created_at
* @property int|null $updated_at
* @property int $is_deleted
* @property-read \App\Models\Client|null $client
* @property-read \App\Models\Company $company
* @property-read \App\Models\CompanyGateway|null $gateway
* @property-read \App\Models\GatewayType|null $gateway_type
* @property-read mixed $hashed_id
* @property-read \App\Models\User $user
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken query()
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereClientId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereCompanyGatewayId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereCompanyId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereGatewayCustomerReference($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereGatewayTypeId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereIsDefault($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereIsDeleted($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereMeta($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereRoutingNumber($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|ClientGatewayToken withoutTrashed()
* @mixin \Eloquent
*/
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();
}
}