my-idlers/app/Models/Settings.php

24 lines
478 B
PHP
Raw Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\DB;
class Settings extends Model
{
use HasFactory;
protected $table = 'settings';
2022-03-05 16:58:25 +01:00
protected $fillable = ['id', 'show_versions_footer', 'show_servers_public'];
public static function getSettings()
{
return DB::table('settings')
->where('id', '=', 1)
->get();
}
}