@extends('layouts.admin')
@section('content')
| Device ID |
Device Name |
Device Type |
@forelse(($pole->devices ?? []) as $key => $device)
| {{ $device->imei }} |
{{ $device->name }} |
{{ $device->type->name ?? '' }} |
@empty
| No devices found. |
@endforelse
| Camera ID |
Camera Name |
Camera Type |
@forelse(($pole->cctvs ?? []) as $key => $cctv)
| {{ $cctv->id }} |
{{ $cctv->name }} |
{{ $cctv->type }} |
@empty
| No camera found. |
@endforelse
| Display ID |
Display Name |
Display Type |
@forelse(($pole->videos ?? []) as $key => $video)
| {{ $video->id }} |
{{ $video->name }} |
{{ $video->type }} |
@empty
| No display (videotron) found. |
@endforelse
| Speaker ID |
Speaker Name |
Speaker Type |
@forelse(($pole->audios ?? []) as $key => $audio)
| {{ $audio->id }} |
{{ $audio->name }} |
{{ $audio->type }} |
@empty
| No speaker found. |
@endforelse
@endsection