@extends('layouts.app') @section('title', '編輯紀錄 — ' . $doc->title) @section('content') @include('projects._nav') @php $label = '文件'; @endphp
編輯紀錄
{{ $doc->title }}
返回{{ $label }}
@if ($logs->isEmpty())
尚無編輯紀錄
@else
@foreach ($logs as $log) @endforeach
時間 操作人 動作 文件標題 詳情
{{ $log->created_at->format('Y-m-d H:i') }} {{ $log->user->name ?? '—' }} @if ($log->action === 'created') 新增 @elseif ($log->action === 'updated') 編輯 @else 刪除 @endif {{ $log->doc_title }} @if ($log->action === 'updated') @endif
@if ($logs->hasPages()) @endif
@endif
{{-- Diff Modal --}} @endsection @push('scripts') @endpush