• Stars
    star
    145
  • Rank 246,195 (Top 5 %)
  • Language
    PHP
  • License
    MIT License
  • Created almost 6 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Laravel Seo package for Content writer/admin/web master who do not know programming but want to edit/update SEO tags from dashboard

Laravel Seo Tools

Laravel is becoming more and more popular and lots of web application are developing. In most of the web application there need some SEO work for their marketing purpose. There are some tools but those are not suitable for non programmer. Everything can be control via dashboard like Wordpress Yoast

See Demo

Installation

  "require": { 
     "digitaldream/laravel-seo-tools": "1.*"
}

Settings

  1. Add this line to config/app.php providers array . Not needed if you are using laravel 5.5 or greater
    SEO\SeoServiceProvider::class
  1. Then Run
    php artisan vendor:publish --provider="SEO\SeoServiceProvider"

Please have a look to App\Policies\Seo folder. Adjust permission for seo settings routes.

  1. Run migration
  php artisan migrate
  1. Run Seed
   php artisan db:seed --class="SEO\Database\Seeders\SeoTablesSeeder"
  1. Show form into your post/content page by adding this custom blade tag
     @seoForm($model)

This will be usually inside your form.

  1. Save tags into your controller
    
     if ($model->save()) {
           \SEO\Seo::save($model, route('blog::posts.show', $model->slug), [
               'title' => $model->title,
               'images' => [
                   $model->getImageUrl()
               ]
           ]);
          }

Do not make your controller dirty. Do not worry follow this instruction

  1. Finally display tags into your layouts header by this custom blade tag
   @seoTags()

Now visit /seo/dashboard from your browser to see seo dashboard and settings

Easy to use

Target user of this tool is non programmer. So they can able to add/modify on page SEO tags and do some necessary action that can give full control how this page will be appear by Search Engine.

Social media sharing

Everybody loves to share their page or content in social media. By using this tools you can able to manage how your page looks like in Facebook, Twitter and others and what image will be shown, which title and description are shown and many more. social_media

Page management

Your application have many pages but not all of them for search engine. You can control this from your dashboard. Also it can be set via programatically for example when a post is published it will automatically added to xml sitemap and will add necessary seo tags so search engine can understand its purpose and content. page_management

Submit company or personal information to Google

For business or ecommerce we often see support email, telephone and some other extra information like their Facebook, Twitter account in google search. This can be done schema.org tags. To make this super simple there have few input field that you can easily fill and save. Behind the scene everything will be done for you. company_personal_info

Webmaster tools

Sometimes web master need ftp or file access because they need to add some verification code into your site. Using this tools they can simply add this from dashboard. Like Google Verification code webmaster_tools

Sitemap generator

Sitemap are the key to search engine. Search engine will crawl your website according to this. It will be created automatically for you. Also you can set pririty and change frequency of your page. site_map

Robot.txt and .htaccess file customization

Web master sometimes need to have access to robot.txt and .htaccess. Now it can be done via dashboard. Although it requires expertise knowledge to modify this files. robot_htaccess

Meta tag management

Only way to inform search engine about your site or page is via Meta tags. There are many tags. Most common are already there. But you can able to create, edit or delete any of them. To add a meta tag you do not have to call programmer. You can do it from dashbarod.

meta_tags

This is simple. Isn't it?

More Repositories

1

laracrud

Laravel Code Generator based on MySQL Database
PHP
330
star
2

image-crawler-python

Find image from a web url and save it to your project folder
Python
37
star
3

photo

Laravel Photo Manager
PHP
32
star
4

googleplace

Google Places API Library. Easy to use and learn
PHP
20
star
5

dbreader

Database Reader
PHP
8
star
6

data-converter

something in web application we need to convert data from excel file to array, array to excel file and more.
PHP
7
star
7

laravel-seo-tools-demo

Demo project for SEO
PHP
4
star
8

laracrud-demo

This project is the demo of laracrud. Most of the classes are created by using laracrud commands.
PHP
3
star
9

social-media

Social Media login and registration are now common in almost all website. But its very hard to find a solution which support Facebook, Google, Linkedin and Twitter in Object Oriented PHP. This package can be used in any PHP framework.
PHP
3
star
10

symfony-auth

Symfony 6 authentication system with tailwindcss
PHP
2
star
11

mvc

Little and really simple MVC(Model VIew Controller).This is Just for the beginner who want to know how MVC work.This is is not build to handle any commercial project.
PHP
2
star
12

minesweeper

Minesweeper is a single-player puzzle computer game. The objective of the game is to clear a rectangular board containing hidden "mines" or bombs without detonating any of them, with help from clues about the number of neighboring mines in each field
PHP
2
star
13

laravel-web-push-demo

Laravel WebPush Notification from scratch to finish
PHP
1
star
14

laravel-5-boilerplate

Laravel 5.4 application with web authentication, Social Media login and register, api with Laravel Passport and Dingo, testing with codeception.
PHP
1
star
15

laravel8-vue3

Laravel 8 and Vue3
PHP
1
star
16

django-cms

Small django cms to learn django by project
Python
1
star