@extends('landingpage::themes.job_board.layouts.app') {{-- Crucial: Extends THEME'S app layout --}} {{-- The $page object is passed from FrontendController and used by the extended layout for meta tags --}} {{-- You can override specific meta tags here if needed for this specific template --}} {{-- @section('meta_title', $company->name . ' - Company Details - ' . setting('site_name')) --}} @section('content')

{{ $company->name }}

{{-- Add more company details here like tagline, location etc. if available --}}
{!! $company->description !!} {{-- Make sure this is properly sanitized if it contains user-generated HTML --}}
{{-- Add more sections: jobs by this company, contact info, map, etc. --}}
@endsection