zenia9012 / seo-module-laravel by Yevhenii

Seo tools module. Seo helpers manager package for websites on Laravel and Lumen
93
2
1
Package Data
Maintainer Username: Yevhenii
Maintainer Contact: zenia9012@gmail.com (Yevhenii Riabyi)
Package Create Date: 2018-12-25
Package Last Update: 2020-03-18
Language: PHP
License: MIT
Last Refreshed: 2024-03-27 03:24:32
Package Statistics
Total Downloads: 93
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Seo tools module. Seo helpers package for websites on Laravel and Lumen

This package renders the meta tags and Open Graph tags

The package creates a database, you can easily add SEO data to the database.

Fields example:

<meta name="title" content="example">
<meta name="description" content="example">
<meta name="keywords" content="example">

<meta property="og:title" content="example">
<meta property="og:image" content="example">
<meta property="og:description" content="example">
<meta property="og:type" content="example">

<title>example</title>

Features:

  • seo-manager (coming soon)
  • sharing meta tags in your website

Install

  1. In your terminal:
composer require yevhenii/seo-module-laravel
  1. Add to config/app.php provider
Yevhenii\Seo\SeoServiceProvider::class,
  1. Publish migration, config, views
php artisan vendor:publish --provider="Yevhenii\Seo\SeoServiceProvider::class"
php artisan migrate

Usage example

Add this function to your blade wherever you need

{!! \Yevhenii\Seo\Seo::seoBlock() !!}