Update index.blade.php
This commit is contained in:
parent
d2ca58398f
commit
b9a861a9d2
@ -12,8 +12,9 @@
|
|||||||
<th>名称</th>
|
<th>名称</th>
|
||||||
<th>用户</th>
|
<th>用户</th>
|
||||||
<th>月估算价格</th>
|
<th>月估算价格</th>
|
||||||
<th>创建时间</th>
|
<th>状态</th>
|
||||||
<th>更新时间</th>
|
<th>更新时间</th>
|
||||||
|
<th>创建时间</th>
|
||||||
<th>操作</th>
|
<th>操作</th>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
@ -43,16 +44,18 @@
|
|||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ $host->created_at }}
|
<x-host-status :status="$host->status" />
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ $host->updated_at }}
|
{{ $host->updated_at }}
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
{{ $host->created_at }}
|
||||||
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ route('admin.hosts.edit', $host) }}" class="btn btn-primary btn-sm">编辑</a>
|
<a href="{{ route('admin.hosts.edit', $host) }}" class="btn btn-primary btn-sm">编辑</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@endforeach
|
@endforeach
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
Reference in New Issue
Block a user