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 --}} {{-- KAPASITAS --}}
<div class="form-group"> <div class="form-group">
<label>Kapasitas</label> <label>Kapasitas</label>
<input type="text" <div class="input-group">
name="kapasitas_tps" <input type="text"
class="form-control @error('kapasitas_tps') is-invalid @enderror" name="kapasitas_tps"
value="{{ old('kapasitas_tps') }}" class="form-control @error('kapasitas_tps') is-invalid @enderror"
placeholder="Kapasitas TPS"> value="{{ old('kapasitas_tps') }}"
placeholder="Kapasitas TPS">
<div class="input-group-append">
<span class="input-group-text">ton/hari</span>
</div>
@error('kapasitas_tps') @error('kapasitas_tps')
<small class="text-danger">{{ $message }}</small> <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"> <div class="mb-3 col-md-6">
<small class="text-muted">Kapasitas</small> <small class="text-muted">Kapasitas</small>
<div class="fw-semibold"> <div class="fw-semibold">
{{ $tps->kapasitas_tps ?? '-' }} {{ $tps->kapasitas_tps ?? '-' }} ton/hari
</div> </div>
</div> </div>

View File

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