@extends('layouts.app') @section('title', 'Standorte') @section('content')

Standorte

@forelse ($sites as $site) @empty@endforelse
NameKundeOrtGeräte
{{ $site->name }}{{ $site->customer->name }} {{ trim($site->postal_code.' '.$site->city) ?: '–' }} {{ $site->switches_count }}
Keine Standorte erfasst.
{{ $sites->links() }}
@can(\App\Enums\Permission::SITE_MANAGE)

Standort anlegen

@csrf
@endcan
@endsection