flexisip-account-manager/flexiapi/app/Configuration.php
Timothée Jaussoin 5b34fc623e Add configuration for admins
Redirect when the user is logued out
Update the dependencies
2020-09-14 11:24:59 +02:00

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'];
}