@extends("landingpage::themes.{$activeTheme}.layouts.app") @section('meta_title', $pageTitle ?? 'Business Directory') @section('meta_description', $metaDescription ?? 'Explore companies in our directory.') @section('content')

{{ $pageTitle ?? 'Companies' }}

@if(isset($metaDescription))

{{ $metaDescription }}

@endif
@if($companies->isNotEmpty())
@foreach($companies as $company)
@if($company->logo) {{ $company->name }} Logo @else
{{ Str::limit($company->name, 1, '') }}
@endif

{{ $company->name }}

{{ Str::limit($company->description ?? 'A leading business in its industry.', 90) }}

View Profile
@endforeach
{{-- Pagination Links --}}
{{ $companies->links() }}
@else

No companies found in the directory at the moment. Please check back later.

@endif
@endsection