@extends('layouts.admin') @section('title', 'Job Management') @section('content') @php $statIcons = [ 'briefcase' => '', 'inbox' => '', 'star' => '', 'check' => '', ]; $jobDepartments = collect($jobs)->pluck('department')->unique()->values(); @endphp
@foreach ($jobStats as $stat)

{{ $stat['label'] }}

{{ $stat['value'] }}

@isset($stat['meta'])

{{ $stat['meta'] }}

@endisset
@endforeach
@foreach ($jobs as $job)

{{ $job['title'] }}

{{ $job['location'] }} · {{ $job['type'] }}

{{ $job['status'] }}

Department

{{ $job['department'] }}

Salary

{{ $job['salary'] }}

Experience

{{ $job['experience'] }}

Posted

{{ $job['posted'] }}

@endforeach
@endsection @push('scripts') @endpush