mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
33 lines
557 B
PHP
33 lines
557 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* Class AccountGatewaySettings.
|
|
*/
|
|
class AccountGatewaySettings extends EntityModel
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $dates = ['updated_at'];
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected static $hasPublicId = false;
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function gatewayType()
|
|
{
|
|
return $this->belongsTo('App\Models\GatewayType');
|
|
}
|
|
|
|
public function setCreatedAtAttribute($value)
|
|
{
|
|
// to Disable created_at
|
|
}
|
|
}
|