* @var */ class TicketReply extends EloquentModel { /** * Table name * * @var string */ protected $table = 'tblticketreplies'; protected $primaryKey = 'id'; /** * Eloquent guarded parameters * @var array */ protected $guarded = ['id']; /** * Eloquent fillable parameters * @var array */ protected $fillable = ['tid', 'userid', 'contactid', 'name', 'email', 'date', 'message', 'admin', 'attachment', 'rating', 'editor']; /** * Indicates if the model should soft delete. * * @var bool */ protected $softDelete = false; /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; public function __construct(array $attributes = []) { parent::__construct($attributes); } /** * Get realted client */ public function client() { return $this->belongsTo("ModulesGarden\Servers\ProxmoxVps\Core\Models\Whmcs\Client", "userid"); } }