@extends('layouts.admin') @section('title', 'Data Lowongan') @section('page-title', 'Data Lowongan') @section('page-subtitle', 'Kelola lowongan pekerjaan') @section('content')
Tambah Lowongan
@forelse($vacancies as $i => $vacancy) @empty @endforelse
No Judul Lokasi Tipe Kategori Departemen Status Aksi
{{ $vacancies->firstItem() + $i }} {{ $vacancy->title }} {{ $vacancy->location }} {{ $vacancy->employment_type ?? '-' }} {{ $vacancy->category ?? '-' }} {{ $vacancy->department ?? '-' }} @if($vacancy->is_active) Aktif @else Nonaktif @endif
@csrf @method('DELETE')
Belum ada lowongan.
@if($vacancies->hasPages())
{{ $vacancies->links() }}
@endif
@endsection