@extends('layouts.app') @section('title', '合約 — ' . $project->name) @push('styles') @endpush @section('content') @include('projects._nav', ['project' => $project])
此版本尚無議題。
@else @php $allStatusOpts = \App\Models\IssueStatus::asOptions(); $allTrackerOpts = \App\Models\IssueTracker::asOptions(); $allPriorityOpts = \App\Models\IssuePriority::asOptions(); @endphp| # | 類型 | 狀態 | 標題 | 優先度 | 指派給 | 截止日 | 完成度 |
|---|---|---|---|---|---|---|---|
| #{{ $issue->redmine_id }} | {{ $tData['label'] ?? $issue->tracker }} | {{ $sData['label'] ?? $issue->status }} | {{ $issue->title }} | {{ $pData['label'] ?? $issue->priority }} | {{ $issue->assignee?->name ?? '—' }} | {{ $issue->due_date?->format('Y-m-d') ?? '—' }} | @if(($issue->done_ratio ?? 0) > 0) {{ $issue->done_ratio }}% @else — @endif |