@extends('layouts.app') @section('content')
{{ __('Dashboard') }}
@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 @endforeach
# Name Location Action
{{++$index}} {{$device->name}} {{$device->location}}
@endsection