@extends('layouts.main') @section('title', 'Okis 3.0 | Alle Kunden') @section('content')

Kundenverwaltung

@include('customers._filter') @include('flash_message') @if ($customers->count()) @foreach ($customers as $index => $customer) @endforeach @csrf @method('DELETE') @endif
# Typ Ku.Nr. Firma Ort Aktionen
{{ $index + $customers->firstItem() }} {{-- --}}
{{ $customers->total() > 1 ? $customers->total() .' Einträge' : $customers->total() .' Eintrag'}} {{ $customers->withQueryString()->links() }}
@endsection