@extends('layouts.app') @section('title', 'Kunden') @section('actions') @can(\App\Enums\Permission::CUSTOMER_MANAGE)Kunde anlegen@endcan @endsection @section('content')
@forelse ($customers as $customer) @empty @endforelse
NameKürzelKontaktProjekteSwitches
{{ $customer->name }} {{ $customer->short_code }} {{ $customer->contact_name }} {{ $customer->contact_email ? '· '.$customer->contact_email : '' }} {{ $customer->projects_count }} {{ $customer->switches_count }}
Keine Kunden erfasst.
{{ $customers->links() }}
@endsection