You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
975 B
42 lines
975 B
@extends('system.layouts.app') |
|
@section('title', 'role_manager') |
|
@section('css') |
|
<!-- Styles --> |
|
<style> |
|
label>.form-select { |
|
display: inline; |
|
width: auto; |
|
} |
|
</style> |
|
@endsection |
|
|
|
@section('content') |
|
|
|
<div class="container-fluid"> |
|
<div class="row justify-content-center"> |
|
<div class="col-12 mt-3 d-flex justify-content-between"> |
|
<h2 class="title">系統設定</h2> |
|
</div> |
|
|
|
|
|
|
|
<div class="col-12"> |
|
<table id="roleTable" class="table table-striped table-bordered" style="width:100%"> |
|
<thead> |
|
<tr> |
|
<th>管理群組名稱</th> |
|
|
|
<th>功能</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
@endsection |
|
|
|
@section('js') |
|
@parent |
|
|
|
@stop
|
|
|