my-idlers/app/Models/Settings.php
cp6 87322fd2b5 Updated settings to be fillable
Updated settings to be fillable
2022-03-05 11:06:58 +11:00

16 lines
297 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Settings extends Model
{
use HasFactory;
protected $table = 'settings';
protected $fillable = ['id', 'show_versions_footer', 'show_servers_public'];
}