@extends('adminlte::page') @section('title', 'Mis Postulaciones') @section('content_header')

Mis Postulaciones

@stop @section('content') @if ($postulaciones->isEmpty())

No tienes postulaciones activas.

Revisa los trabajos disponibles y postúlate a aquellos que te interesen.

@else

Listado de Postulaciones

@foreach ($postulaciones as $postulacion) @endforeach
Empresa Título del Trabajo Estado Fecha de Postulación
Logo {{ $postulacion->trabajo->empresa->nombre }} {{ $postulacion->trabajo->titulo }} @if ($postulacion->estado == 'pendiente') Pendiente @elseif ($postulacion->estado == 'revisado') Revisado @else Rechazado @endif {{ \Carbon\Carbon::parse($postulacion->created_at)->format('d-m-Y') }}
@endif @stop @section('css') @stop @section('js') @stop