@extends('job.layout.web') @section('title', 'Job Listing') @section('content')

Job Listings

Explore the latest job opportunities from top companies

@foreach ($jobs as $job) @php $postedDate = Carbon\Carbon::parse($job->created_at); $daysAgo = round($postedDate->diffInDays(Carbon\Carbon::now())); @endphp

{{ $daysAgo }} Days Ago

{{ $job->title }}

{{ $job->company->name }} Ulhasnagar {{ $job->type }} ₹{{ $job->min_salary }} – ₹{{ $job->max_salary }} Per Year

@endforeach
@endsection