@extends('layouts.app') @section('title', 'Funcionários') @section('content')
{{ $stats['total'] ?? 0 }}
Total de Funcionários
{{ $stats['active'] ?? 0 }}
Ativos
{{ $stats['total'] > 0 ? round(($stats['active'] / $stats['total']) * 100, 1) : 0 }}% do total
{{ ($stats['suspended'] ?? 0) + ($stats['inactive'] ?? 0) }}
Inativos / Suspensos
{{ $stats['total'] > 0 ? round((($stats['suspended'] + $stats['inactive']) / $stats['total']) * 100, 1) : 0 }}% do total
{{ $stats['terminated'] ?? 0 }}
Desligados
{{ $stats['total'] > 0 ? round(($stats['terminated'] / $stats['total']) * 100, 1) : 0 }}% do total

Funcionários

Novo Funcionário
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Limpar
Nome Identidade Telefone Cargo Estabelecimento Status Ações
@endsection @push('styles') @endpush @push('scripts') @endpush