Files
sam-manage/resources/views/documents/show.blade.php
권혁성 c65d3f49dc feat: 문서 관리 시스템 MNG 관리자 패널 구현 (Phase 2)
- Document 관련 모델 4개 생성 (Document, DocumentApproval, DocumentData, DocumentAttachment)
- DocumentController 생성 (목록/생성/상세/수정 페이지)
- DocumentApiController 생성 (AJAX CRUD 처리)
- 문서 관리 뷰 3개 생성 (index, edit, show)
- 웹/API 라우트 등록

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 21:51:23 +09:00

200 lines
11 KiB
PHP

@extends('layouts.app')
@section('title', '문서 상세')
@section('content')
<div class="p-6">
{{-- 헤더 --}}
<div class="flex justify-between items-center mb-6">
<div>
<h1 class="text-2xl font-bold text-gray-800">문서 상세</h1>
<p class="text-sm text-gray-500 mt-1">{{ $document->document_no }} - {{ $document->title }}</p>
</div>
<div class="flex gap-2">
@if($document->status === 'DRAFT' || $document->status === 'REJECTED')
<a href="{{ route('documents.edit', $document->id) }}"
class="inline-flex items-center px-4 py-2 bg-blue-600 text-white text-sm font-medium rounded-lg hover:bg-blue-700 transition-colors">
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"/>
</svg>
수정
</a>
@endif
<a href="{{ route('documents.index') }}"
class="inline-flex items-center px-4 py-2 bg-gray-100 text-gray-700 text-sm font-medium rounded-lg hover:bg-gray-200 transition-colors">
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18"/>
</svg>
목록으로
</a>
</div>
</div>
{{-- 문서 정보 --}}
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
{{-- 메인 컨텐츠 --}}
<div class="lg:col-span-2 space-y-6">
{{-- 기본 정보 --}}
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-6">
<h2 class="text-lg font-semibold text-gray-800 mb-4">기본 정보</h2>
<dl class="grid grid-cols-2 gap-4">
<div>
<dt class="text-sm font-medium text-gray-500">문서번호</dt>
<dd class="mt-1 text-sm text-gray-900">{{ $document->document_no }}</dd>
</div>
<div>
<dt class="text-sm font-medium text-gray-500">템플릿</dt>
<dd class="mt-1 text-sm text-gray-900">{{ $document->template->name ?? '-' }}</dd>
</div>
<div>
<dt class="text-sm font-medium text-gray-500">제목</dt>
<dd class="mt-1 text-sm text-gray-900">{{ $document->title }}</dd>
</div>
<div>
<dt class="text-sm font-medium text-gray-500">상태</dt>
<dd class="mt-1">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium {{ $document->status_color }}">
{{ $document->status_label }}
</span>
</dd>
</div>
<div>
<dt class="text-sm font-medium text-gray-500">작성자</dt>
<dd class="mt-1 text-sm text-gray-900">{{ $document->creator->name ?? '-' }}</dd>
</div>
<div>
<dt class="text-sm font-medium text-gray-500">작성일</dt>
<dd class="mt-1 text-sm text-gray-900">{{ $document->created_at?->format('Y-m-d H:i') ?? '-' }}</dd>
</div>
@if($document->updated_at && $document->updated_at->ne($document->created_at))
<div>
<dt class="text-sm font-medium text-gray-500">수정자</dt>
<dd class="mt-1 text-sm text-gray-900">{{ $document->updater->name ?? '-' }}</dd>
</div>
<div>
<dt class="text-sm font-medium text-gray-500">수정일</dt>
<dd class="mt-1 text-sm text-gray-900">{{ $document->updated_at?->format('Y-m-d H:i') ?? '-' }}</dd>
</div>
@endif
</dl>
</div>
{{-- 기본 필드 데이터 --}}
@if($document->template?->basicFields && $document->template->basicFields->count() > 0)
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-6">
<h2 class="text-lg font-semibold text-gray-800 mb-4">{{ $document->template->title ?? '문서 정보' }}</h2>
<dl class="grid grid-cols-1 md:grid-cols-2 gap-4">
@foreach($document->template->basicFields as $field)
@php
$fieldData = $document->data->where('field_key', $field->field_key)->first();
$value = $fieldData?->field_value ?? '-';
@endphp
<div class="{{ $field->type === 'textarea' ? 'col-span-2' : '' }}">
<dt class="text-sm font-medium text-gray-500">{{ $field->label }}</dt>
<dd class="mt-1 text-sm text-gray-900 {{ $field->type === 'textarea' ? 'whitespace-pre-wrap' : '' }}">{{ $value }}</dd>
</div>
@endforeach
</dl>
</div>
@endif
{{-- 섹션 데이터 (테이블) --}}
@if($document->template?->sections && $document->template->sections->count() > 0)
@foreach($document->template->sections as $section)
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-6">
<h2 class="text-lg font-semibold text-gray-800 mb-4">{{ $section->name }}</h2>
<p class="text-sm text-gray-500">테이블 형태의 데이터 표시는 추후 구현 예정입니다.</p>
</div>
@endforeach
@endif
{{-- 첨부파일 --}}
@if($document->attachments && $document->attachments->count() > 0)
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-6">
<h2 class="text-lg font-semibold text-gray-800 mb-4">첨부파일</h2>
<ul class="divide-y divide-gray-200">
@foreach($document->attachments as $attachment)
<li class="py-3 flex items-center justify-between">
<div class="flex items-center">
<svg class="w-5 h-5 text-gray-400 mr-3" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.172 7l-6.586 6.586a2 2 0 102.828 2.828l6.414-6.586a4 4 0 00-5.656-5.656l-6.415 6.585a6 6 0 108.486 8.486L20.5 13"/>
</svg>
<div>
<p class="text-sm font-medium text-gray-900">{{ $attachment->file->original_name ?? '파일명 없음' }}</p>
<p class="text-xs text-gray-500">
{{ $attachment->type_label }} ·
{{ $attachment->file ? number_format($attachment->file->size / 1024, 1) . ' KB' : '-' }}
</p>
</div>
</div>
@if($attachment->file)
<a href="{{ route('files.download', $attachment->file->id) }}"
class="text-sm text-blue-600 hover:text-blue-800">
다운로드
</a>
@endif
</li>
@endforeach
</ul>
</div>
@endif
</div>
{{-- 사이드바 --}}
<div class="space-y-6">
{{-- 결재 현황 --}}
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-6">
<h2 class="text-lg font-semibold text-gray-800 mb-4">결재 현황</h2>
@if($document->approvals && $document->approvals->count() > 0)
<ol class="relative border-l border-gray-200 ml-3">
@foreach($document->approvals->sortBy('step_order') as $approval)
<li class="mb-6 ml-6">
<span class="absolute flex items-center justify-center w-6 h-6 rounded-full -left-3 ring-4 ring-white
@if($approval->status === 'APPROVED') bg-green-500
@elseif($approval->status === 'REJECTED') bg-red-500
@elseif($approval->status === 'PENDING') bg-yellow-500
@else bg-gray-300
@endif">
@if($approval->status === 'APPROVED')
<svg class="w-3 h-3 text-white" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"/>
</svg>
@elseif($approval->status === 'REJECTED')
<svg class="w-3 h-3 text-white" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"/>
</svg>
@else
<span class="text-white text-xs font-bold">{{ $approval->step_order }}</span>
@endif
</span>
<div>
<h3 class="text-sm font-medium text-gray-900">{{ $approval->user->name ?? '미지정' }}</h3>
<p class="text-xs text-gray-500">{{ $approval->step_name }}</p>
@if($approval->approved_at)
<p class="text-xs text-gray-400 mt-1">{{ $approval->approved_at->format('Y-m-d H:i') }}</p>
@endif
@if($approval->comment)
<p class="text-xs text-gray-600 mt-1 bg-gray-50 p-2 rounded">{{ $approval->comment }}</p>
@endif
</div>
</li>
@endforeach
</ol>
@else
<p class="text-sm text-gray-500">결재선이 설정되지 않았습니다.</p>
@endif
</div>
{{-- 문서 이력 --}}
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-6">
<h2 class="text-lg font-semibold text-gray-800 mb-4">문서 이력</h2>
<p class="text-sm text-gray-500">문서 이력 기능은 추후 구현 예정입니다.</p>
</div>
</div>
</div>
</div>
@endsection