mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 23:50:33 +00:00
24 lines
412 B
PHP
24 lines
412 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class RemoteBackupServer extends Model
|
||
|
{
|
||
|
use HasFactory;
|
||
|
|
||
|
protected $fillable = [
|
||
|
'name',
|
||
|
'type',
|
||
|
'hostname',
|
||
|
'port',
|
||
|
'username',
|
||
|
'password',
|
||
|
'path',
|
||
|
'ssh_private_key',
|
||
|
'ssh_private_key_password',
|
||
|
];
|
||
|
}
|