@extends('layouts.master') @section('content')

Cameras List

@if ($cameras) @foreach ($cameras as $index => $list) @endforeach @endif
# Camera Name Streaming URl Status Action
{{ ++$index }} {{ $list['cameraname'] }} {{ $list['stream_url'] }} @if ($list['status'] == 1) Active @else Disconnected @endif Open Camera {{-- Edit Delete --}}
{{-- Back --}} {{-- Next --}}
@endSection