@extends('layouts.app') @section('title', 'Browse Jobs | Infra24') @section('content')

Browse Jobs

Filters
@if($jobs->count() > 0)
@foreach($jobs as $job)
@if($job->company->logo) company @else
@endif
{{ $job->title }}

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

{{ Str::limit($job->description, 100) }}

{{ ucfirst($job->job_type) }} @if($job->budget_min || $job->budget_max) {{ $job->budget_min ? '$'.$job->budget_min : '' }} {{ $job->budget_min && $job->budget_max ? '-' : '' }} {{ $job->budget_max ? '$'.$job->budget_max : '' }} @endif
@foreach($job->skills->take(3) as $skill) {{ $skill->name }} @endforeach @if($job->skills->count() > 3) +{{ $job->skills->count() - 3 }} @endif
@endforeach
{{ $jobs->withQueryString()->links() }}
@else
Sorry! No Jobs Found

We couldn't find any jobs matching your search criteria. Try different keywords.

@endif
@endsection