@extends('admin.layouts.netgescon') @section('title', 'Dipendenti fornitore') @section('content')

Dipendenti - {{ $fornitore->ragione_sociale ?? $fornitore->nome ?? 'Fornitore' }}

Gestione operatori che possono lavorare i ticket da cellulare e web
Torna ai ticket
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@endif
Nuovo dipendente
@csrf
Elenco dipendenti
@forelse($dipendenti as $dipendente) @empty @endforelse
Nome Contatti Accesso Stato
{{ $dipendente->nome_completo }} @if($dipendente->note)
{{ \Illuminate\Support\Str::limit($dipendente->note, 80) }}
@endif
{{ $dipendente->email ?: '-' }}
{{ $dipendente->telefono ?: '-' }}
@if($dipendente->user_id) Account collegato @else Nessun account @endif {{ $dipendente->attivo ? 'Attivo' : 'Disattivo' }}
@csrf
Nessun dipendente registrato.
@endsection