kapasitas

This commit is contained in:
rahmagustin 2026-04-19 19:48:10 +07:00
parent 0c1150e1a4
commit bafacc38c2
3 changed files with 10 additions and 8 deletions

View File

@ -79,11 +79,15 @@ class="form-control @error('tahun_pembuatan') is-invalid @enderror"
{{-- KAPASITAS --}}
<div class="form-group">
<label>Kapasitas</label>
<div class="input-group">
<input type="text"
name="kapasitas_tps"
class="form-control @error('kapasitas_tps') is-invalid @enderror"
value="{{ old('kapasitas_tps') }}"
placeholder="Kapasitas TPS">
<div class="input-group-append">
<span class="input-group-text">ton/hari</span>
</div>
@error('kapasitas_tps')
<small class="text-danger">{{ $message }}</small>

View File

@ -65,7 +65,7 @@ class="img-fluid h-100 w-100 rounded-start"
<div class="mb-3 col-md-6">
<small class="text-muted">Kapasitas</small>
<div class="fw-semibold">
{{ $tps->kapasitas_tps ?? '-' }}
{{ $tps->kapasitas_tps ?? '-' }} ton/hari
</div>
</div>

View File

@ -350,8 +350,6 @@ function icon(color) {
marker.tpsData = tps;
markers.push(marker);
});
/* ===== LEGEND KATEGORI (BALIK 😤) ===== */
var legend = L.control({
position: 'bottomleft'
});