Files
sam-manage/app/Models/DevTools/ApiBookmark.php
김보곤 48aa4505f5 feat: [database] codebridge DB 분리 재적용 - 55개 MNG 전용 모델만 설정
- API 사용 테이블 22개(23개 모델) 제외하고 55개 모델만 $connection = 'codebridge' 적용
- config/database.php에 codebridge connection 재추가
- 제외 대상: Barobill 12개, ESign 4개, Audit 2개, DevTools 1개, System 2개, HR 1개
2026-03-09 20:02:38 +09:00

71 lines
1.5 KiB
PHP

<?php
namespace App\Models\DevTools;
use App\Models\User;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* API 즐겨찾기 모델
*
* @property int $id
* @property int $user_id
* @property string $endpoint
* @property string $method
* @property string|null $display_name
* @property int $display_order
* @property string|null $color
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
*/
class ApiBookmark extends Model
{
protected $connection = 'codebridge';
protected $table = 'admin_api_bookmarks';
protected $fillable = [
'user_id',
'endpoint',
'method',
'display_name',
'display_order',
'color',
];
protected $casts = [
'display_order' => 'integer',
];
/**
* 사용자 관계
*/
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
/**
* 기본 정렬 스코프
*/
public function scopeOrdered($query)
{
return $query->orderBy('display_order')->orderBy('created_at');
}
/**
* HTTP 메서드 배지 색상
*/
public function getMethodColorAttribute(): string
{
return match (strtoupper($this->method)) {
'GET' => 'green',
'POST' => 'blue',
'PUT' => 'yellow',
'PATCH' => 'orange',
'DELETE' => 'red',
default => 'gray',
};
}
}