@extends('layouts.hh') @section('title', 'Procesos de Selección') @section('content')
@if (session('status')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ $job->title }}

@if($job->closing_comment)
@endif Fecha de publicación: {{ Carbon::parse($job->created_at)->format('l, j \d\e F Y') }}

{!! $job->description !!}

@if (!$job->hide_business)
{{ $job->business->name }}
{{ $job->business->heading->name}}

{{ $job->business->description }}

@endif

Postulantes

{{ $postulationsQuantity }}

Rechazados

{{ $postulationsRejectedQuantity }}

Aprobados

{{ $postulationsApprovedQuantity }}

Visualizaciones

{{ $job->views }}
@endsection @section('trello')

PIZARRA DE POSTULANTES



POSTULANTES
@foreach ($postulations as $p) @if (is_null($p->approved) && $p->state_id == 1)

{{ $p->user->name }} {{ $p->user->lastname }}
{{ $job->currencyLiteral() }} {{ $p->min }} ~ {{ $p->max }}
{{ $p->availability ? 'Disp. Inmediata' : '' }}

@endif @endforeach
ENTREVISTA
@foreach ($postulations as $p) @if (is_null($p->approved) && $p->state_id == 2)

{{ $p->user->name }} {{ $p->user->lastname }}
{{ $job->currencyLiteral() }} {{ $p->min }} ~ {{ $p->max }}
{{ $p->availability ? 'Disp. Inmediata' : '' }}

@endif @endforeach
EVALUACION
@foreach ($postulations as $p) @if (is_null($p->approved) && $p->state_id >= 3 && 6 >= $p->state_id)

{{ $p->user->name }} {{ $p->user->lastname }}
{{ $job->currencyLiteral() }} {{ $p->min }} ~ {{ $p->max }}
{{ $p->availability ? 'Disp. Inmediata' : '' }}

@endif @endforeach
ENTREVISTA CON CLIENTE
@foreach ($postulations as $p) @if (is_null($p->approved) && $p->state_id >= 7 && 9 >= $p->state_id)

{{ $p->user->name }} {{ $p->user->lastname }}
{{ $job->currencyLiteral() }} {{ $p->min }} ~ {{ $p->max }}
{{ $p->availability ? 'Disp. Inmediata' : '' }}

@endif @endforeach
    @foreach ($postulations as $p)
  • {{ $p->user->name }} {{ $p->user->lastname }} {{ Carbon::parse($p->created_at)->format('l, j \d\e F Y') }}
  • @endforeach
    @forelse ($postulationsApproved as $p)
  • {{ $p->user->name }} {{ $p->user->lastname }} {{ Carbon::parse($p->created_at)->format('l, j \d\e F Y') }} revertir
  • @empty

    No hay postulaciones aprovadas por el momento

    @endforelse
    @forelse ($postulationsRejected as $p)
  • {{ $p->user->name }} {{ $p->user->lastname }} {{ Carbon::parse($p->created_at)->format('l, j \d\e F Y') }} revertir
  • @empty

    No hay postulaciones desaprovadas por el momento

    @endforelse
@endsection