19 lines
249 B
PHP
19 lines
249 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Setting extends Model
|
|
{
|
|
protected $table = "setting";
|
|
protected $fillable = [
|
|
'pacs',
|
|
'zfp',
|
|
'port',
|
|
'portzfp',
|
|
'username',
|
|
'password',
|
|
];
|
|
}
|