-
-
Notifications
You must be signed in to change notification settings - Fork 10
Meta Tags
iRaziul edited this page Mar 22, 2026
·
1 revision
Use SeoKit::meta() when you need something beyond title and description.
SeoKit::meta()
->title('Pricing')
->description('Compare plans and features.')
->keywords(['pricing', 'plans', 'saas'])
->robots(['index', 'follow'])
->canonical(route('pricing'));SeoKit::meta()
->addMeta('author', 'Raziul Islam')
->addMeta('theme-color', '#111827');SeoKit::meta()
->addLanguage('en', 'https://example.com/en/pricing')
->addLanguage('fr', 'https://example.com/fr/tarifs');SeoKit::meta()
->prev(route('posts.index', ['page' => $page - 1]), $page > 1)
->next(route('posts.index', ['page' => $page + 1]), $page < $lastPage);SeoKit::meta()->ampHtml('https://example.com/post/amp');⭐ Star SeoKit on GitHub if you find it useful. It helps more Laravel developers discover the package.
If you are looking for help with Laravel, package integration, or custom web solutions, feel free to reach out: raziul.dev