chess/resources/views/content/menu_admin/index.blade.php
Ramadhon Ikhsan Prasetya 603e31b0f4 init
2024-08-29 10:56:32 +07:00

36 lines
1.2 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>Role User</th>
<th>Akses Menu</th>
<th style="width:1% !important;">Act</th>
</tr>
</thead>
</table>
</x-slot>
</x-card.content>
</div>
</div>
</div>
</div>
@include('content.menu_admin.form')
@endsection
@section('script')
@include('content.menu_admin.action')
@endsection