@extends('layouts.app', ['title' => 'CRM | Kunden-Kontakte']) @section('content') {{-- Neuer Kontakt Modal --}} {{-- Bearbeiten Modal --}} {{-- Ansehen Modal --}} {{-- Löschen Modal --}} {{-- Main Content --}}
{{-- Header --}}

Kunden-Kontakte

CRM – alle Kontaktpersonen
@if(Auth::user()->get_employee->is_mgt) ({{ $export_new_contact }}) exportieren @endif
{{-- Alerts --}} @if(session('msg'))
{{ session('msg') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif {{-- Suche --}}
{{-- Tabelle --}}
{{ $items->total() }} {{ $items->total() === 1 ? 'Kontakt' : 'Kontakte' }}
@if(Auth::user()->get_employee->is_mgt) @endif @forelse($items as $item) @if(Auth::user()->get_employee->is_mgt) @endif @empty @endforelse
ID Name / Beruf Firma E-Mail Tel / Mobil
{{ $item->employee_id }} {{ $item->customer->name }} @if($item->email) {{ $item->email }} @else @endif @if($item->tel || $item->mobile) @if($item->tel)
{{ $item->tel }}
@endif @if($item->mobile)
{{ $item->mobile }}
@endif @else — @endif
Keine Kontakte gefunden
@if($items->hasPages()) @endif
@endsection