41 lines
1.7 KiB
PHP
41 lines
1.7 KiB
PHP
@section('content')
|
|
{{-- <x-other.titleHeader judul="{{$title}}" /> --}}
|
|
<div class="row mt-4">
|
|
<div class="col-md-12">
|
|
<x-card.content title="Master User" subTitle="Table Master User">
|
|
<x-slot name="toolbar">
|
|
<button type="button" onclick="clearForm();znModal('mForm');" class="btn btn-success mr-3">
|
|
<i class="la la-plus mr-2"></i>Tambah Data
|
|
</button>
|
|
</x-slot>
|
|
<x-slot name="content">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
</div>
|
|
</div>
|
|
<div class="table-responsive">
|
|
<table class="table table table-sm table-hover" id="indexTable">
|
|
<thead>
|
|
<tr>
|
|
<th>User</th>
|
|
<th>Email</th>
|
|
<th>Role</th>
|
|
<th>Divisi</th>
|
|
<th>Status</th>
|
|
<th>Nama Client</th>
|
|
<th>Act</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</x-slot>
|
|
</x-card.content>
|
|
</div>
|
|
</div>
|
|
@include('content.others.user.form')
|
|
@endsection
|
|
@section('script')
|
|
@include('content.others.user.action')
|
|
@endsection
|
|
|