@extends('layouts.app') @section('title') All Alarms @endsection @section('description') All alarms is here. @endsection @section('breadcrumb')
  • All Alarms
  • @endsection @section('content')
    @forelse ($alarms as $index => $alarm) @empty @endforelse
    # Device ID Message Severity Created At
    {{ $index+1 }} {{ $alarm->device_id }} {{ $alarm->log }} @if( $alarm->severity == 'warning') Warning @elseif ($alarm->severity == 'normal') Normal @else Danger @endif {{ $alarm->created_at->diffForHumans() }}
    No data.
    @endsection