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

38 lines
1.5 KiB
PHP

@section('content')
{{-- <x-other.titleHeader judul="{{$title}}" /> --}}
<div class="row mt-4">
<div class="col-md-12">
<x-card.content title="Master Client" subTitle="Table Master Client">
<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 style="width: 400px">Nama Client</th>
<th>Alamat</th>
<th style="width: 1%">Act</th>
</tr>
</thead>
</table>
</div>
</x-slot>
</x-card.content>
</div>
</div>
@include('content.others.client.form')
{{-- @include('content.others.client.formDet') --}}
@endsection
@section('script')
@include('content.others.client.action')
@endsection