mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
11 lines
221 B
PHP
11 lines
221 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Configuration extends Model
|
|
{
|
|
protected $table = 'configuration';
|
|
protected $fillable = ['copyright', 'intro_registration', 'custom_theme'];
|
|
}
|