@extends('admin.layout.main') @section('title', 'Manajemen-data Sensor') @section('content')
Data Sensor
@foreach ($sensors as $index => $s) @endforeach
No ID Sensor Nama Sensor Deskripsi Status Aksi
{{ $index + 1 }} {{ $s->id_sensor }} {{ $s->name }} {{ $s->description ?? '-' }} @if ($s->status == '1') Aktif @else Tidak Aktif @endif
@endsection