mirror of
https://gh.wpcy.net/https://github.com/sogjugz/freescout-remote-response.git
synced 2026-07-17 18:26:59 +08:00
22 lines
460 B
PHP
22 lines
460 B
PHP
<?php
|
|
|
|
namespace Modules\SsRemoteResponse\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class RemoteResponseSettings extends Model
|
|
{
|
|
protected $table = 'ss_remote_responses';
|
|
|
|
protected $primaryKey = 'mailbox_id';
|
|
|
|
public $timestamps = false;
|
|
|
|
public $incrementing = false;
|
|
|
|
protected $fillable = ['mailbox_id', 'enabled', 'url', 'timeout', 'method', 'headers'];
|
|
|
|
protected $casts = [
|
|
'enabled' => 'boolean',
|
|
];
|
|
}
|