Lae/resources/views/maintenances.blade.php

51 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2023-02-20 04:49:48 +00:00
@extends('layouts.app')
@section('title', '维护计划')
@section('content')
<h3>维护计划</h3>
2023-02-20 04:51:39 +00:00
@if (count($maintenances) > 0)
<div class="overflow-auto">
<table class="table table-hover">
<thead>
<th>名称</th>
<th>内容</th>
<th>模块</th>
<th>开始于</th>
<th>结束于</th>
</thead>
<tbody>
@foreach ($maintenances as $m)
<tr>
<td>
{{ $m->name }}
</td>
<td>
2023-02-20 04:55:22 +00:00
{!! $m->content !!}
2023-02-20 04:51:39 +00:00
</td>
<td>
{{ $m->module?->name }}
</td>
<td>
{{ $m->start_at }}
</td>
<td>
{{ $m->end_at }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@else
<p>
暂无维护计划。
</p>
@endif
2023-02-20 04:49:48 +00:00
@endsection