34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
|
@section('content')
|
||
|
{{-- <x-other.titleHeader judul="{{$title}}" /> --}}
|
||
|
<div class="d-flex flex-column-fluid">
|
||
|
<div class="container-fluid">
|
||
|
<div class="row mt-4">
|
||
|
<div class="col-md-12">
|
||
|
<x-card.content title="{{$title}}" subTitle="Table {{$title}}">
|
||
|
<x-slot name="toolbar">
|
||
|
|
||
|
</x-slot>
|
||
|
|
||
|
<x-slot name="content">
|
||
|
<table class="table table-separate table-head-custom table-checkable" id="indexTable">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th style="width:5%;">Act</th>
|
||
|
<th>Role User</th>
|
||
|
<th>Akses Menu</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
</table>
|
||
|
</x-slot>
|
||
|
</x-card.content>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
@include('content.menu_admin.action')
|
||
|
@include('content.menu_admin.form')
|
||
|
|
||
|
@endsection
|