@extends('layouts.admin') @section('title', '主机') @section('content')

主机管理

计费项目。

@foreach ($hosts as $host) @endforeach
ID 模块 名称 用户 月估算价格 状态 更新时间 创建时间 操作
{{ $host->id }} {{ $host->module_id }} {{ $host->name }} {{ $host->user->name }} @if ($host->managed_price !== null) {{ $host->managed_price }} 元 @else {{ $host->price }} 元 @endif {{ $host->updated_at }} {{ $host->created_at }} 编辑
{{-- 分页 --}} {{ $hosts->links() }} @endsection