@extends('layouts.app') @section('title', 'Switches') @section('actions') @can(\App\Enums\Permission::SWITCH_MANAGE)Switch anlegen@endcan @can(\App\Enums\Permission::SWITCH_IMPORT)CSV-Import@endcan @can(\App\Enums\Permission::SWITCH_EXPORT)CSV-Export@endcan @endsection @section('content')
@forelse ($switches as $switch) @empty @endforelse
HostnameManagement-IPHersteller / ModellFirmware StandortGeräteprofilUmgebungZuletzt gesehen
{{ $switch->hostname }} {{ $switch->management_ip }} {{ $switch->modelLabel() }} {{ $switch->firmware_version ?: '–' }} {{ $switch->site?->name ?? '–' }} {{ $switch->deviceProfile?->label() ?? '– kein Profil –' }} {{ $switch->is_production ? 'Produktiv' : 'Labor' }} {{ $switch->last_seen_at?->format('d.m. H:i') ?? '–' }}
Keine Geräte erfasst.
{{ $switches->links() }}
@endsection