117 lines
5.7 KiB
PHP
117 lines
5.7 KiB
PHP
@extends('layout.main')
|
|
|
|
@section('content')
|
|
<div class="container-xxl flex-grow-1 container-p-y">
|
|
<div class="card">
|
|
<div class="card-header border-bottom">
|
|
<h5 class="card-title mb-0">Data Master Keluarga</h5>
|
|
</div>
|
|
|
|
<div class="card-body border-bottom pt-4">
|
|
<form method="GET" action="{{ route('keluarga.index') }}" class="d-flex justify-content-between align-items-center row gap-3 gap-md-0">
|
|
<div class="col-md-auto">
|
|
<div class="d-flex align-items-center">
|
|
<label class="me-2 text-nowrap">Show</label>
|
|
<select name="per_page" class="form-select form-select-sm w-auto" onchange="this.form.submit()">
|
|
<option value="10" {{ request('per_page') == 10 ? 'selected' : '' }}>10</option>
|
|
<option value="25" {{ request('per_page') == 25 ? 'selected' : '' }}>25</option>
|
|
</select>
|
|
<label class="ms-2 text-nowrap">entries</label>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-auto d-flex gap-2">
|
|
<div class="input-group input-group-sm w-auto">
|
|
<input type="text" name="search" class="form-control" placeholder="Cari No. KK..." value="{{ request('search') }}">
|
|
<button type="submit" class="btn btn-outline-primary"><i class="ti tabler-search"></i></button>
|
|
</div>
|
|
<a href="{{ route('keluarga.create') }}" class="btn btn-sm btn-primary">
|
|
<i class="ti tabler-plus me-1"></i> Tambah Data
|
|
</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="table-responsive text-nowrap">
|
|
<table class="table table-hover">
|
|
<thead class="border-top">
|
|
<tr>
|
|
<th>No</th>
|
|
<th>No. KK</th>
|
|
<th>Desa/Kelurahan</th>
|
|
<th>Adat</th>
|
|
<th>File KK</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse($keluarga as $index => $item)
|
|
<tr>
|
|
<td>{{ $keluarga->firstItem() + $index }}</td>
|
|
<td><span class="text-heading fw-medium">{{ $item->kk }}</span></td>
|
|
<td>{{ $item->desakelurahan->nama ?? '-' }}</td>
|
|
<td>{{ $item->adat->nama ?? '-' }}</td>
|
|
<td>
|
|
@if($item->path_kk)
|
|
<span class="badge bg-label-success"><i class="ti tabler-check"></i> Ada</span>
|
|
@else
|
|
<span class="badge bg-label-danger"><i class="ti tabler-x"></i> Tidak Ada</span>
|
|
@endif
|
|
</td>
|
|
<td>
|
|
<div class="d-flex align-items-center">
|
|
<a href="{{ route('keluarga.edit', $item->id) }}" class="btn btn-icon btn-text-secondary rounded-pill"><i class="ti tabler-edit ti-md"></i></a>
|
|
<a href="javascript:;" class="btn btn-icon btn-text-secondary rounded-pill delete-record" data-id="{{ $item->id }}" data-nama="{{ $item->kk }}"><i class="ti tabler-trash ti-md"></i></a>
|
|
<a href="{{ route('keluarga.show', $item->id) }}" class="btn btn-icon btn-text-secondary rounded-pill"><i class="ti tabler-eye ti-md"></i></a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
<tr><td colspan="6" class="text-center py-4">Tidak ada data ditemukan.</td></tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="card-footer d-flex justify-content-center justify-content-md-end border-top">
|
|
{{ $keluarga->appends(request()->query())->links('pagination::bootstrap-5') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
<script>
|
|
'use strict';
|
|
const csrfToken = "{{ csrf_token() }}";
|
|
|
|
$(document).ready(function () {
|
|
$(document).on('click', '.delete-record', function (e) {
|
|
e.preventDefault();
|
|
const id = $(e.currentTarget).data('id');
|
|
const name = $(e.currentTarget).data('nama');
|
|
|
|
Swal.fire({
|
|
title: 'Hapus Data?',
|
|
text: `Data KK "${name}" akan dihapus permanen!`,
|
|
icon: 'warning',
|
|
showCancelButton: true,
|
|
confirmButtonText: 'Ya, Hapus!',
|
|
customClass: { confirmButton: 'btn btn-primary me-3', cancelButton: 'btn btn-label-secondary' },
|
|
buttonsStyling: false
|
|
}).then(function (result) {
|
|
if (result.value) {
|
|
$.ajax({
|
|
url: `/keluarga/${id}`,
|
|
type: 'DELETE',
|
|
headers: { 'X-CSRF-TOKEN': csrfToken },
|
|
success: function (res) {
|
|
Swal.fire({ icon: 'success', title: 'Terhapus!', text: res.message, showConfirmButton: false, timer: 1500 })
|
|
.then(() => window.location.reload());
|
|
},
|
|
error: () => Swal.fire({ icon: 'error', title: 'Gagal!', text: 'Terjadi kesalahan sistem.' })
|
|
});
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
@endpush |