Update show.blade.php

This commit is contained in:
iVampireSP.com 2022-11-24 08:47:04 +08:00 committed by GitHub
parent b9a861a9d2
commit bc27fa367c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,8 +19,9 @@
<th>名称</th>
<th>用户</th>
<th>月估算价格</th>
<th>创建时间</th>
<th>状态</th>
<th>更新时间</th>
<th>创建时间</th>
<th>操作</th>
</thead>
@ -42,11 +43,14 @@
{{ $host->price }}
</td>
<td>
{{ $host->created_at }}
<x-host-status :status="$host->status" />
</td>
<td>
{{ $host->updated_at }}
</td>
<td>
{{ $host->created_at }}
</td>
<td>
<a href="{{ route('admin.hosts.edit', $host) }}" class="btn btn-primary btn-sm">编辑</a>
</td>