seomanager / laravel-seo-manager
SEO Manger for Laravel
Installs: 2 291
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: >=7.0
- artesaos/seotools: ^0.10.0
- illuminate/config: ~5
- illuminate/support: ~5
- laravelcollective/html: ^5.4.0
README
Current Build Status
Installation
1 - Dependency
The first step is using composer to install the package and automatically update your composer.json
file, you can do this by running:
composer require seomanager/laravel-seo-manager
Note: If you are using Laravel 5.5, the steps 2 and 3, for providers and aliases, are unnecessaries. SeoManager supports Laravel new Package Discovery.
2 - Provider
You need to update your application configuration in order to register the package so it can be loaded by Laravel, just update your config/app.php
file adding the following code at the end of your 'providers'
section:
config/app.php
// file START ommited 'providers' => [ // other providers ommited Laravel\SeoManager\Providers\SeoManagerServiceProvider::class, ], // file END ommited
3 - Facade
Facades are not supported in Lumen.
In order to use the SEOMeta
facade, you need to register it on the config/app.php
file, you can do that the following way:
// file START ommited 'aliases' => [ // other Facades ommited 'LaravelSeo'=>Laravel\SeoManager\Facades\SeoManager::class, ], // file END ommited
4 Configuration
Publish config
In your terminal type
php artisan vendor:publish php artisam migrate php artisan storage:link
In LaravelSeoManager.php
configuration file you can determine the properties of the default values and some behaviors.
LaravelSeoManager.php
- multi-languages default
false
- multi-languages default
provider
this data send type and multi-languages defaultcontroller
Meta tags Generator
With SEOMeta you can create meta tags to the head
-
1 add
{!! SEO::generate(true) !!}
to sitehead
-
2 add
{!! SeoManager::generateManager() !!}
to sitebody
you can be shut seo manager in admin permission
EX
@if(Auth::user->hasRole() == 'admin') {!! SeoManager::generateManager() !!} @endif
- 3 usage in controller
public function index(Request $request) { SeoManager::seoGenarate($request); return view('home'); }