mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-03-15 04:09:39 +01:00
66 lines
1.3 KiB
PHP
66 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class Setting
|
|
*
|
|
* @package App\Models
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property string $key
|
|
* @property mixed $value
|
|
* @method static Builder|Setting byUser($user_id = null)
|
|
* @method static Builder|Setting systemOnly()
|
|
*/
|
|
class Setting extends Model
|
|
{
|
|
public $table = 'settings';
|
|
|
|
public $timestamps = false;
|
|
|
|
public $fillable = [
|
|
'user_id',
|
|
'key',
|
|
'value',
|
|
];
|
|
|
|
protected $casts = [
|
|
'user_id' => 'integer',
|
|
];
|
|
|
|
/*
|
|
| ========================================================================
|
|
| SCOPES
|
|
*/
|
|
|
|
/**
|
|
* Scope for the user relation
|
|
*
|
|
* @param Builder $query
|
|
* @param int|null $user_id
|
|
* @return Builder
|
|
*/
|
|
public function scopeByUser(Builder $query, int $user_id = null): Builder
|
|
{
|
|
if (is_null($user_id) && auth()->check()) {
|
|
$user_id = auth()->id();
|
|
}
|
|
return $query->where('user_id', $user_id);
|
|
}
|
|
|
|
/**
|
|
* Scope to get system settings only
|
|
*
|
|
* @param Builder $query
|
|
* @return Builder
|
|
*/
|
|
public function scopeSystemOnly(Builder $query): Builder
|
|
{
|
|
return $query->whereNull('user_id');
|
|
}
|
|
}
|