@extends('layout.app') @section('title', 'Perangkat OLT - Sistem Manajemen ISP') @section('content') add Tambah OLT
@php use App\Models\OltDevice; $totalOlt = OltDevice::count(); @endphp
apps Daftar Perangkat OLT
@if(session('success')) @endif @if(session('error')) @endif
@forelse($devices as $index => $d) @empty @endforelse
No Nama IP Address Vendor Model Lokasi Aksi
{{ $devices->firstItem() + $index }}
apps
{{ $d->nama }}
{{ $d->ip_address }} @if($d->vendor) {{ $d->vendor }} @else - @endif @if($d->model) {{ $d->model }} @else - @endif @if($d->lokasi) {{ $d->lokasi }} @else - @endif
apps

Belum ada perangkat OLT

Mulai dengan menambahkan perangkat OLT pertama

add Tambah OLT Pertama
@if($devices->hasPages()) @endif
@endsection @section('scripts') @endsection