@extends('admin.layouts.app') @section('title', 'Careers') @section('breadcrumb')
  • Pages
  • Careers
  • @endsection @section('heading', 'Careers') @section('subheading', 'Manage job openings and positions.') @section('content') {{-- Add Form --}}

    Add Job Opening

    @csrf
    {{-- Table --}}
    @foreach ([ ['position' => 'Senior Sales Executive', 'dept' => 'Sales', 'location' => 'Mumbai', 'type' => 'Full-time', 'apps' => 24, 'status' => 'Open', 'posted' => '10 Feb 2025'], ['position' => 'Digital Marketing Manager', 'dept' => 'Marketing', 'location' => 'Bangalore', 'type' => 'Full-time', 'apps' => 18, 'status' => 'Open', 'posted' => '08 Feb 2025'], ['position' => 'Full Stack Developer', 'dept' => 'Tech', 'location' => 'Remote', 'type' => 'Full-time', 'apps' => 42, 'status' => 'Open', 'posted' => '05 Feb 2025'], ['position' => 'Operations Coordinator', 'dept' => 'Operations', 'location' => 'Delhi', 'type' => 'Full-time', 'apps' => 12, 'status' => 'Closed', 'posted' => '01 Feb 2025'], ['position' => 'HR Recruiter', 'dept' => 'HR', 'location' => 'Mumbai', 'type' => 'Full-time', 'apps' => 8, 'status' => 'Filled', 'posted' => '28 Jan 2025'], ['position' => 'Finance Intern', 'dept' => 'Finance', 'location' => 'Mumbai', 'type' => 'Intern', 'apps' => 15, 'status' => 'Open', 'posted' => '25 Jan 2025'], ] as $job) @endforeach
    Position Department Location Type Applications Status Posted Actions
    {{ $job['position'] }} {{ $job['dept'] }} {{ $job['location'] }} {{ $job['type'] }} {{ $job['apps'] }} @php $statusClass = match($job['status']) { 'Open' => 'bg-emerald-50 text-emerald-700', 'Closed' => 'bg-amber-50 text-amber-700', 'Filled' => 'bg-gray-100 text-gray-600', default => 'bg-gray-100 text-gray-600' }; @endphp {{ $job['status'] }} {{ $job['posted'] }}
    @endsection