Files
Epicnabbo-Catalogus-Updated…/cms update/app/Models/Game/Player/UserSetting.php
T
Remco b67e0ec2b9 🆙 Add fixed cms 🆙
2026-02-02 19:30:21 +01:00

22 lines
399 B
PHP

<?php
namespace App\Models\Game\Player;
use App\Models\User;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class UserSetting extends Model
{
protected $table = 'users_settings';
protected $guarded = ['id'];
public $timestamps = false;
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}