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

主机管理

更快捷的管理计费项目。更高级的管理请前往 "仪表盘"。

@foreach ($hosts as $host) @endforeach
ID 模块 名称 月估算价格 状态 更新 / 创建 时间 操作
{{ $host->id }} {{ $host->module->name }} {{ $host->name }} @if ($host->managed_price !== null) {{ $host->managed_price }} 元 @else {{ $host->price }} 元 @endif
@if ($host->isMonthly()) 月付 @endif
@if ($host->isNextMonthCancel())
不自动续费 @endif
{{ $host->updated_at }}
{{ $host->created_at }} @if ($host->isTrial())
试用到 {{ $host->trial_ends_at }} @endif
{{-- 分页 --}} {{ $hosts->links() }} @endsection