@php function decimalToDms($decimal, $type = 'lat') { if ($decimal === null || $decimal === '') return ''; $direction = $decimal >= 0 ? ($type === 'lat' ? 'N' : 'E') : ($type === 'lat' ? 'S' : 'W'); $decimal = abs($decimal); $degree = floor($decimal); $minuteFloat = ($decimal - $degree) * 60; $minute = floor($minuteFloat); $second = round(($minuteFloat - $minute) * 60, 2); return "{$degree}°{$minute}'{$second}\"{$direction}"; } @endphp @extends('admin.template') @section('content')

Edit Data TPS

Form edit data Tempat Pembuangan Sampah

@csrf @method('PUT') {{-- Nama TPS --}}
{{-- Alamat --}}
{{-- Kategori TPS --}}
{{-- Tahun Pembuatan --}}
{{-- Kapasitas TPS --}}
{{-- Status TPS --}}
{{-- Latitude (DMS) --}}
{{-- Longitude (DMS) --}}
{{-- Foto TPS --}}
{{-- Foto Lama --}} @if ($tps->foto_tps)
@endif
{{-- Button --}} Batal
@endsection