diff --git a/resources/views/admin/work-orders/index.blade.php b/resources/views/admin/work-orders/index.blade.php index 0aff5c5..8dca685 100644 --- a/resources/views/admin/work-orders/index.blade.php +++ b/resources/views/admin/work-orders/index.blade.php @@ -23,6 +23,7 @@ 模块 主机 发起者 + 创建时间 状态 操作 @@ -66,6 +67,9 @@ class="host_name" {{ $workOrder->user->name }} + + {{ $workOrder->created_at }}, {{ $workOrder->created_at->diffForHumans() }} + diff --git a/resources/views/admin/work-orders/show.blade.php b/resources/views/admin/work-orders/show.blade.php index cb07ed8..6909d2e 100644 --- a/resources/views/admin/work-orders/show.blade.php +++ b/resources/views/admin/work-orders/show.blade.php @@ -6,6 +6,10 @@

{{ $workOrder->title }}

UUID: {{ $workOrder->uuid }} +
+ 创建时间: {{ $workOrder->created_at }}, {{ $workOrder->created_at->diffForHumans() }}。 +
+ 最后更新时间: {{ $workOrder->updated_at }}。

编辑此工单 用户: {{ $workOrder->user->name }}