Files
sam-manage/app/Models/DevTools/ApiBookmark.php
김보곤 8291cdc39b feat: [database] codebridge DB 분리 - 118개 MNG 전용 테이블 connection 설정
- config/database.php에 codebridge connection 추가
- 78개 MNG 전용 모델에 $connection = 'codebridge' 설정
  - Admin (15): PM, 로드맵, API Explorer
  - Sales (16): 영업파트너, 수수료, 가망고객
  - Finance (9): 법인카드, 자금관리, 홈택스
  - Barobill (12): 은행/카드 동기화 관리
  - Interview (1), ESign (6), Equipment (2)
  - AI (3), Audit (3), 기타 (11)
2026-03-07 11:31:27 +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',
};
}
}