pos-gis/resources/views/content/menu_admin/index.blade.php

34 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2024-10-07 06:13:42 +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 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