@forelse($plans as $plan) @empty @endforelse
# 계획명 상태 카테고리 우선순위 Phase 진행률 기간 액션
{{ $loop->iteration + (($plans->currentPage() - 1) * $plans->perPage()) }}
{{ $plan->title }} @if($plan->description)

{{ Str::limit($plan->description, 50) }}

@endif
{{ $plan->status_label }} {{ $plan->category_label }} {{ $plan->priority_label }} {{ Str::before($plan->phase_label, ' —') }}
{{ $plan->progress }}%
{{ $plan->period }} @if($plan->deleted_at)
@else @endif
등록된 계획이 없습니다.
@include('partials.pagination', [ 'paginator' => $plans, 'target' => '#plan-table', 'includeForm' => '#filterForm' ])