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

Tenders from {{ $company->name }}

@if($tenders->isEmpty())

This company currently has no tenders listed.

@else
@foreach($tenders as $tender)

{{ $tender->title }}

{{ $tender->location ?: 'Not specified' }}

@if($tender->deadline)

Deadline: {{ $tender->deadline->format('M d, Y H:i A') }}

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