@extends('landingpage::themes.job_board.layouts.app') {{-- $page is constructed in FrontendController for meta tags --}} {{-- $company is the company model instance --}} {{-- $jobs is the paginated collection of jobs --}} @section('content')
← Back to {{ $company->name }}'s Profile

Job Openings at {{ $company->name }}

@if($jobs->isEmpty())

This company currently has no open job positions listed.

@else
@foreach($jobs as $job)

{{ $job->title }}

{{ $job->location ?: 'Not specified' }} - {{ $job->job_type ?: 'N/A' }}

@if($job->application_deadline)

Apply by: {{ $job->application_deadline->format('M d, Y') }}

@endif
@endforeach
{{ $jobs->links() }}
@endif
@endsection