mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-whmcs-module.git
synced 2026-04-25 08:02:18 +08:00
26 lines
512 B
PHP
26 lines
512 B
PHP
<?php
|
|
|
|
namespace Modules\LJPcWHMCSModule\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class WHMCSClient
|
|
*
|
|
* @package Modules\LJPcWHMCSModule\Entities
|
|
*
|
|
* This model is never saved to the database and is only used to define the structure of the WHMCS client data.
|
|
*/
|
|
class WHMCSClient extends Model {
|
|
|
|
protected $fillable = [
|
|
'id',
|
|
'firstname',
|
|
'lastname',
|
|
'companyname',
|
|
'email',
|
|
'datecreated',
|
|
'groupid',
|
|
'status',
|
|
];
|
|
}
|