@extends('layouts.app') @section('title', '파티션 관리') @section('content')
현재 보관기간: {{ $data['retention_days'] }}일 ({{ round($data['retention_days'] / 30, 1) }}개월)
변경하려면 .env 파일에서
AUDIT_RETENTION_DAYS 값을 수정하세요.
| 파티션명 | 날짜 범위 | 행 수 | 상태 | 액션 |
|---|---|---|---|---|
| {{ $p['name'] }} | @if($p['bound_date']) ~ {{ $p['bound_date'] }} @else MAXVALUE (캐치올) @endif | {{ number_format($p['rows']) }} | @switch($p['status']) @case('current') 현재 @break @case('archived') 보관중 @break @case('expired') 초과 @break @case('upcoming') 예정 @break @case('future') 미래 @break @endswitch | @if($p['can_drop']) @else - @endif |