chess/resources/views/content/menu_admin/index.blade.php

36 lines
1.2 KiB
PHP
Raw Normal View History

2024-08-29 03:56:32 +00:00
@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