@extends('layouts.app') @section('title', 'Settings - Hidroponik') @section('page-title', 'Settings') @section('content') {{-- Alert --}} @if(session('success')) @endif @if(session('error')) @endif
Pengaturan Batas Sensor (Threshold)
Informasi
Atur batas Minimum dan Maksimum untuk setiap parameter sensor. Jika nilai sensor berada di luar rentang ini, sistem akan menampilkan status Bahaya Kurang atau Bahaya Lebih pada dashboard dan halaman peringatan.
@csrf @method('PUT')
{{-- ═══ pH Level ═══ --}} @php $batasPh = $batas['ph_level'] ?? null; @endphp
pH Level
Tingkat keasaman air
{{-- ═══ TDS (ppm) ═══ --}} @php $batasTds = $batas['tds'] ?? null; @endphp
TDS (ppm)
Kepekatan nutrisi air
{{-- ═══ Suhu Air ═══ --}} @php $batasSuhu = $batas['suhu_air'] ?? null; @endphp
Suhu Air (°C)
Suhu larutan nutrisi
{{-- ═══ Turbidity ═══ --}} @php $batasTurbidity = $batas['turbidity'] ?? null; @endphp
Turbidity (NTU)
Kekeruhan air
Batal
@endsection