# |
Name |
Location |
Action |
@foreach($devices as $index=> $device)
@if($device->status==0)
@php
$class = "btn-danger";
$text = "Off";
@endphp
@else
@php
$class = "btn-success";
$text = "On";
@endphp
@endif
{{++$index}} |
{{$device->name}} |
{{$device->location}} |
|
@endforeach