@extends('layouts.admin') @section('title', 'Detail Lowongan Pekerjaan') @section('content')

Detail Lowongan Pekerjaan

{{ $job->title }}

Informasi Lowongan

@if($job->is_active) Aktif @else Non-Aktif @endif {{ ucfirst(str_replace('-', ' ', $job->type)) }} {{ ucfirst($job->level) }}
Posisi
{{ $job->title }}
Departemen
{{ $job->department ?? 'N/A' }}
Lokasi
{{ $job->location }}
Tipe Pekerjaan
{{ ucfirst(str_replace('-', ' ', $job->type)) }}
Level
{{ ucfirst($job->level) }}
@if($job->salary_range)
Salary Range
{{ $job->salary_range }}
@endif @if($job->deadline)
Deadline
@if($job->deadline->isPast()) {{ $job->deadline->format('d M Y') }} (Expired) @else {{ $job->deadline->format('d M Y') }} @endif
@endif
Slug URL
{{ $job->slug }}
@if($job->short_description)

Deskripsi Singkat

{{ $job->short_description }}

@endif @if($job->description)

Deskripsi Lengkap

{!! $job->description !!}
@endif @if($job->requirements)

Requirements

    @if(is_array($job->requirements)) @foreach($job->requirements as $requirement)
  • {{ $requirement }}
  • @endforeach @else
  • {{ $job->requirements }}
  • @endif
@endif @if($job->responsibilities)

Tanggung Jawab

    @if(is_array($job->responsibilities)) @foreach($job->responsibilities as $responsibility)
  • {{ $responsibility }}
  • @endforeach @else
  • {{ $job->responsibilities }}
  • @endif
@endif @if($job->benefits)

Benefits

    @if(is_array($job->benefits)) @foreach($job->benefits as $benefit)
  • {{ $benefit }}
  • @endforeach @else
  • {{ $job->benefits }}
  • @endif
@endif @if($job->applications && $job->applications->count() > 0)

Pelamar ({{ $job->applications->count() }})

Lihat Semua
@foreach($job->applications->take(5) as $application)
{{ $application->name }}
{{ $application->email }}
@switch($application->status) @case('pending') Pending @break @case('reviewed') Reviewed @break @case('accepted') Accepted @break @case('rejected') Rejected @break @endswitch
@endforeach
@endif @if($job->meta_title || $job->meta_description)

SEO Meta

@if($job->meta_title)
Meta Title
{{ $job->meta_title }}
@endif @if($job->meta_description)
Meta Description
{{ $job->meta_description }}
@endif
@endif

Aksi

Edit Lowongan @if($job->applications->count() > 0) Lihat Pelamar ({{ $job->applications->count() }}) @endif Kembali

Statistik

Total Pelamar: {{ $job->applications->count() }}
Pending: {{ $job->applications->where('status', 'pending')->count() }}
Reviewed: {{ $job->applications->where('status', 'reviewed')->count() }}
Accepted: {{ $job->applications->where('status', 'accepted')->count() }}
Rejected: {{ $job->applications->where('status', 'rejected')->count() }}

Informasi Sistem

ID: {{ $job->id }}
Dibuat: {{ $job->created_at->format('d/m/Y H:i') }}
Diperbarui: {{ $job->updated_at->format('d/m/Y H:i') }}
@if($job->salary_min || $job->salary_max)
Salary: @if($job->salary_min && $job->salary_max) {{ number_format($job->salary_min, 0, ',', '.') }} - {{ number_format($job->salary_max, 0, ',', '.') }} @elseif($job->salary_min) Min: {{ number_format($job->salary_min, 0, ',', '.') }} @elseif($job->salary_max) Max: {{ number_format($job->salary_max, 0, ',', '.') }} @endif
@endif
@push('scripts') @endpush @endsection