@extends('layouts.admin') @section('title', '首页配置') @section('head') @include('admin.partials.modern-index-head') @endsection @section('page_subtitle', '二级菜单化管理首页模块:先选模块,再进入列表、新增与修改。') @section('content')

首页配置模块

请选择一个模块进入二级配置页。
共 {{ number_format($modules->count()) }} 个模块
@forelse($modules as $module) @empty @endforelse
模块 键名 状态 条目数 排序 操作
{{ $module->name }}
{{ $module->title ?: '未设置模块标题' }}
{{ $module->module_key }} @if($module->enabled) 启用 @else 停用 @endif {{ number_format((int) $module->items_count) }} {{ (int) $module->sort_order }} 进入配置
暂无模块数据。
@endsection