- 사용자 초대 API: role 문자열 지원 추가 (React 호환) - 알림 설정 API: 그룹 기반 계층 구조 구현 - notification_setting_groups 테이블 추가 - notification_setting_group_items 테이블 추가 - notification_setting_group_states 테이블 추가 - GET/PUT /api/v1/settings/notifications 엔드포인트 추가 - Pint 코드 스타일 정리
37 lines
676 B
PHP
37 lines
676 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class NotificationSettingGroupItem extends Model
|
|
{
|
|
protected $fillable = [
|
|
'group_id',
|
|
'notification_type',
|
|
'label',
|
|
'sort_order',
|
|
];
|
|
|
|
protected $casts = [
|
|
'sort_order' => 'integer',
|
|
];
|
|
|
|
/**
|
|
* 그룹 관계
|
|
*/
|
|
public function group(): BelongsTo
|
|
{
|
|
return $this->belongsTo(NotificationSettingGroup::class, 'group_id');
|
|
}
|
|
|
|
/**
|
|
* Scope: 정렬순
|
|
*/
|
|
public function scopeOrdered($query)
|
|
{
|
|
return $query->orderBy('sort_order');
|
|
}
|
|
}
|