Subscribe our newsletter
New Things Will Always Update Regularly
@php $organizationSchema = [ '@context' => 'https://schema.org', '@type' => 'Organization', 'name' => $companyName, 'url' => $job->company->website ?? $job->company->path ?? url('/'), 'logo' => $job->company->displayLogoUrl(), 'description' => html_entity_decode(strip_tags(Str::limit($job->company->description ?? 'Technology company', 200)), ENT_QUOTES, 'UTF-8'), 'address' => [ '@type' => 'PostalAddress', 'addressCountry' => $job->location->country ?? 'International', 'addressLocality' => $job->location->city ?? '', ], ]; $webPageSchema = [ '@context' => 'https://schema.org', '@type' => 'WebPage', 'name' => $jobTitle . ' at ' . $companyName, 'description' => $isPremiumLocked ? 'Premium job opportunity. Create a free account to view full details.' : html_entity_decode(strip_tags(Str::limit($job->description ?? $job->ai_description ?? '', 200)), ENT_QUOTES, 'UTF-8'), 'url' => url()->current(), 'inLanguage' => 'en-US', 'isPartOf' => [ '@type' => 'WebSite', 'name' => 'Jaabz', 'url' => url('/'), ], 'about' => ['@id' => url()->current() . '#job'], 'primaryImageOfPage' => [ '@type' => 'ImageObject', 'url' => $job->c
New Things Will Always Update Regularly