@extends('user::layouts/panel') @section('module-content')
| 名稱 | {{ $sprint->name }} |
|---|---|
| 週期 | {{ $sprint->year }}年第{{ $sprint->week }}週 |
| 時間區間 | {{ $sprint->start_date->format('Y/m/d') }} ~ {{ $sprint->end_date->format('Y/m/d') }} |
| 狀態 | {{ $sprint->status_text }} |
| 需記錄工時的使用者 | @foreach($users as $user) {{ $user->name }} @endforeach |
| 補充說明 |
{!! nl2br(e($sprint->description ?: '無說明')) !!}
|
| 建立資訊 |
{!! nl2br(e($sprint->description ?: '無說明')) !!}
|
| 建立時間 | {{ $sprint->created_at->format('Y-m-d H:i:s') }} |
| 專案名稱 | 專案類型 | 預估人天 | 累計工時 | 完成百分比 |
|---|---|---|---|---|
| {{ $project->name }} | {{ $project->type }} | {{ $project->estimated_man_days }} 人天 | {{ number_format($project->total_hours, 2) }} 小時 (約 {{ number_format($project->total_man_days, 2) }} 人天) | {{ $project->progress_percentage }}% |
| 日期 | 使用者 | 專案 | 工時 (小時) | 備註 |
|---|---|---|---|---|
| {{ $record->record_date }} | {{ $record->user->name }} | {{ $record->taskProject->name }} | {{ number_format($record->hours, 2) }} | {{ $record->remark ?: '-' }} |