@extends('layouts.app') @section('title', 'Job Listing — Find Your Dream Job') @section('content')

Job Listing

Job Category
@foreach($categories as $cat)
id ? 'checked' : '' }}>
({{ $cat->jobs_count ?? 12 }})
@endforeach
Type of Employments
@foreach([ 'full-time' => 'Full Time', 'freelance' => 'Freelance', 'part-time' => 'Part Time', 'remote' => 'Remote', 'contract' => 'Contract', 'internship' => 'Internship' ] as $val => $label)
({{ mt_rand(10, 100) }})
@endforeach
Date of Post
@foreach([ 'today' => 'Today', 'week' => 'Last week ago', 'month' => 'Last month ago', '3months' => '3 month ago', 'year' => '1 year ago' ] as $val => $label)
({{ mt_rand(20, 120) }})
@endforeach
Salary Range
₹3L - ₹30L+
@foreach([ '300000-500000' => '₹3L - ₹5L', '500000-1000000' => '₹5L - ₹10L', '1000000-1500000' => '₹10L - ₹15L', '1500000-2000000' => '₹15L - ₹20L', '2000000-3000000' => '₹20L - ₹30L' ] as $val => $label)
({{ mt_rand(10, 80) }})
@endforeach
Popular Skills
@foreach(['Technology', 'Marketing', 'Sales', 'Transport', 'Medical', 'Design', 'Data Analyst', 'Development', 'Non-Profit', 'Manager', 'Health'] as $skillTag) {{ $skillTag }} @endforeach
Clear All

Showing results {{ $jobs->count() }} in {{ $jobs->total() }} jobs list

@forelse($jobs as $job)
{{ $job->company->name ?? 'Company' }}

{{ $job->title }}

{{ $job->company->name ?? 'Company' }}

Salary: {{ $job->salary_range }} / Per Month
Deadline: {{ $job->deadline ? $job->deadline->format('d M, Y') : now()->addDays(20)->format('d M, Y') }}
{{ ucwords(str_replace('-',' ',$job->job_type)) }} @if($job->is_remote) Remote @endif {{ ucfirst($job->experience_level) }}
Apply Now
@empty
🔍

No Matching Jobs Found

Try clearing filters or search options to explore jobs.

Browse All Jobs
@endforelse
@php $gradients = [ 'linear-gradient(135deg, #fda4af 0%, #f43f5e 100%)', // Rose 'linear-gradient(135deg, #c084fc 0%, #8b5cf6 100%)', // Purple 'linear-gradient(135deg, #fed7aa 0%, #f97316 100%)', // Orange 'linear-gradient(135deg, #99f6e4 0%, #0d9488 100%)', // Teal 'linear-gradient(135deg, #bfdbfe 0%, #2563eb 100%)', // Blue 'linear-gradient(135deg, #fed7aa 0%, #ea580c 100%)' // Warm Orange ]; @endphp @foreach($jobs as $idx => $job)
@if($job->is_urgent) Urgent @elseif($job->is_featured) Featured @endif
{{ $job->company->name ?? 'Company' }}
{{ $job->title }}

{{ $job->company->name ?? 'Company' }}

Deadline: {{ $job->deadline ? $job->deadline->format('d M, Y') : now()->addDays(20)->format('d M, Y') }}

Salary: {{ $job->salary_range }} / Month
Experience: {{ $job->experience_min ? $job->experience_min.'-'.$job->experience_max.' Years' : '2-3 Years' }}
Location: {{ $job->location->city ?? $job->city ?? 'Remote' }}, IN
{{ ucwords(str_replace('-',' ',$job->job_type)) }} Apply Now
@endforeach
@if($jobs->hasPages())
@endif
@endsection @section('scripts') @endsection @section('styles') @endsection