@extends('layouts.app') @section('title', '編輯紀錄 — ' . $doc->title) @section('content') @include('projects._nav') @php $label = '文件'; @endphp
| 時間 | 操作人 | 動作 | 文件標題 | 詳情 |
|---|---|---|---|---|
| {{ $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 |