Feuerwehr-eppingen/app/Models/Settings.php
Marco Glietsch 343c8cd9b2 Systemeinstellungen Formular
Es gibt jetzt ein Formular für Systemeinstellungen. Es ist erreichbar über das Hauptmenü unter: Verwaltung -> System -> Einstellungen
2023-03-10 12:40:46 +01:00

25 lines
382 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Settings extends Model
{
protected $fillable = [
'name',
'type',
'value'
];
public function getTypeAttribute($value)
{
return strtolower($value);
}
public function setTypeAttribute($value)
{
$this->attributes['type'] = strtolower($value);
}
}