@extends('dashboard.base') @section('content') @if(session('success'))
@endif @if(session('error'))
@endif
@csrf
@foreach(collect($vacancies)->unique('form_type') as $vacancy)

{{ $vacancy['form_type'] }} opportunities

@endforeach

This is a career management system that provides job vacancy details to the public. The system allows you to search and apply for jobs. We encourage you to take your time and look at the open positions we have available.

How does it work?

The process of applying for a job is as follows:

  • View the job openings which are listed below
  • Click the apply button which is available when you open the job details

@forelse($vacancies as $vacancy) @empty @endforelse
Vacancy No Position Deadline Status
{{ $vacancy['vacancy_no'] }} {{ $vacancy['position'] }} {{ \Carbon\Carbon::parse($vacancy['deadline'] ?? '2025-01-01')->format('d F Y') }} {{ ucfirst($vacancy['status']) }}
No vacanciesss found.
@endsection