added it_update_settings, it_get_page, it_update_settings_image test

This commit is contained in:
Peter Papp
2021-03-05 11:57:48 +01:00
parent e514994b08
commit ce08240355
10 changed files with 250 additions and 194 deletions
+7 -1
View File
@@ -9,7 +9,13 @@ class Setting extends Model
{
use HasFactory;
protected $fillable = [
'value',
];
public $timestamps = false;
protected $guarded = ['id'];
protected $primaryKey = 'name';
protected $keyType = 'string';
}