| 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') : '-' }} |
| 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 }} |
| Telefone | {{ $funcionario->phone }} |
|---|---|
| Telefone Alternativo | {{ $funcionario->alternate_phone ?? '-' }} |
| {{ $funcionario->email ?? '-' }} | |
| Endereço | {{ $funcionario->address ?? '-' }} |
| 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' }} |
| Nome | {{ $funcionario->emergency_contact_name ?? '-' }} |
|---|---|
| Telefone | {{ $funcionario->emergency_contact_phone ?? '-' }} |