@extends('layouts.app') @section('title', 'Posiciones - RRHH') @section('content')

Gestión de Posiciones

Limpiar
@forelse($positions as $position) @empty @endforelse
Código Nombre Departamento Nivel Salario Empleados Estado Acciones
{{ $position->code }} {{ $position->name }} @if($position->description)
{{ Str::limit($position->description, 50) }} @endif
@if($position->department) {{ $position->department->name }} @else Sin departamento @endif @if($position->job_level) {{ $position->job_level }} @else - @endif @if($position->min_salary && $position->max_salary) {{ number_format($position->min_salary, 2) }} - {{ number_format($position->max_salary, 2) }}
{{ $position->currency }}
@elseif($position->min_salary) {{ number_format($position->min_salary, 2) }} {{ $position->currency }} @else No especificado @endif
{{ $position->employees_count ?? 0 }} @if($position->is_active) Activa @else Inactiva @endif

No se encontraron posiciones

Crear primera posición
@if($positions->hasPages())
{{ $positions->links() }}
@endif
@endsection @push('scripts') @endpush