@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('title', 'Edit Data TPS') @section('content')
Form edit data Tempat Pembuangan Sampah