Informações Pessoais
Nome Completo {{ $funcionario->full_name }}
Estabelecimento {{ $funcionario->establishment->name ?? '-' }}
Identidade {{ $funcionario->identity_number }} ({{ $funcionario->identity_type }})
Data de Nascimento {{ $funcionario->birth_date ? $funcionario->birth_date->format('d/m/Y') : '-' }}
Dados Profissionais
Cargo {{ $funcionario->position }}
Tipo @php $types = [ 'manager' => 'Gerente', 'supervisor' => 'Supervisor', 'seller' => 'Vendedor', 'cashier' => 'Caixa', 'assistant' => 'Auxiliar', 'other' => 'Outro' ]; @endphp {{ $types[$funcionario->employee_type] ?? $funcionario->employee_type }}
Nº Cartão {{ $funcionario->card_number ?? '-' }}
Status @php $statusClasses = [ 'active' => 'badge-success', 'inactive' => 'badge-danger', 'suspended' => 'badge-warning', 'terminated' => 'badge-danger', ]; $statusTexts = [ 'active' => 'Ativo', 'inactive' => 'Inativo', 'suspended' => 'Suspenso', 'terminated' => 'Desligado', ]; @endphp {{ $statusTexts[$funcionario->status] ?? $funcionario->status }}
Contato
Telefone {{ $funcionario->phone }}
Telefone Alternativo {{ $funcionario->alternate_phone ?? '-' }}
Email {{ $funcionario->email ?? '-' }}
Endereço {{ $funcionario->address ?? '-' }}
@if($funcionario->benefits)
Impostos e Benefícios
@php $benefits = $funcionario->benefits ?? []; @endphp
INSS {{ ($benefits['inss'] ?? false) ? 'Sim' : 'Não' }} @if(isset($benefits['inss_value'])) ({{ $benefits['inss_value'] }}%) @endif
IRT {{ ($benefits['irt'] ?? false) ? 'Sim' : 'Não' }} @if(isset($benefits['irt_value'])) ({{ $benefits['irt_value'] }}%) @endif
Bônus {{ ($benefits['bonus'] ?? false) ? 'Sim' : 'Não' }} @if(isset($benefits['bonus_value'])) (KZ {{ number_format($benefits['bonus_value'], 2, ',', '.') }}) @endif
Seguro Saúde {{ ($benefits['health_insurance'] ?? false) ? 'Sim' : 'Não' }}
Vale Refeição {{ ($benefits['meal_voucher'] ?? false) ? 'Sim' : 'Não' }}
Vale Transporte {{ ($benefits['transport_voucher'] ?? false) ? 'Sim' : 'Não' }}
@endif @if($funcionario->emergency_contact_name || $funcionario->emergency_contact_phone)
Contato de Emergência
Nome {{ $funcionario->emergency_contact_name ?? '-' }}
Telefone {{ $funcionario->emergency_contact_phone ?? '-' }}
@endif
@push('styles') @endpush