for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\LaravelSeo;
use Arcanedev\Support\PackageServiceProvider;
/**
* Class LaravelSeoServiceProvider
*
* @package Arcanedev\LaravelSeo
* @author ARCANEDEV <[email protected]>
*/
class LaravelSeoServiceProvider extends PackageServiceProvider
{
/* ------------------------------------------------------------------------------------------------
| Properties
| ------------------------------------------------------------------------------------------------
* Package name.
* @var string
protected $package = 'seo';
| Main Functions
* Register the service provider.
public function register()
parent::register();
$this->registerConfig();
}
* Boot the service provider.
public function boot()
parent::boot();
$this->publishConfig();
$this->loadMigrations();
//$this->publishMigrations();
* Get the services provided by the provider.
* @return array
public function provides()
return [
//
];