my-idlers/app/Models/Settings.php
cp6 2f3eaadb25 Cleaned up server controller
Moved DB calls into models & cached them
2022-05-15 01:21:51 +10:00

24 lines
478 B
PHP

<?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';
protected $fillable = ['id', 'show_versions_footer', 'show_servers_public'];
public static function getSettings()
{
return DB::table('settings')
->where('id', '=', 1)
->get();
}
}