Lae/resources/views/admin/modules/index.blade.php

46 lines
1.2 KiB
PHP
Raw Normal View History

2022-11-18 10:50:28 +00:00
@extends('layouts.admin')
@section('title', '模块')
@section('content')
2022-11-19 05:58:55 +00:00
<h3>模块</h3>
<a href="{{ route('admin.modules.create') }}">新建模块</a>
2022-11-18 10:50:28 +00:00
<div class="overflow-auto">
<table class="table table-hover">
<thead>
<th>ID</th>
<th>名称</th>
<th>操作</th>
</thead>
<tbody>
@foreach ($modules as $module)
<tr>
<td>
<a href="{{ route('admin.modules.show', $module) }}">
{{ $module->id }}
</a>
</td>
<td>
{{ $module->name }}
</td>
<td>
2022-11-19 05:58:55 +00:00
<a href="{{ route('admin.modules.show', $module) }}" class="btn btn-primary btn-sm">查看</a>
2022-11-18 10:50:28 +00:00
<a href="{{ route('admin.modules.edit', $module) }}" class="btn btn-primary btn-sm">编辑</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
{{-- 分页 --}}
{{ $modules->links() }}
@endsection