for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Seo;
use Arcanesoft\Core\Bases\PackageServiceProvider;
/**
* Class SeoServiceProvider
*
* @package Arcanesoft\Seo
* @author ARCANEDEV <[email protected]>
*/
class SeoServiceProvider extends PackageServiceProvider
getBasePath
{
/* -----------------------------------------------------------------
| Properties
| -----------------------------------------------------------------
* Package name.
* @var string
protected $package = 'seo';
| Main Methods
* Register the service provider.
public function register()
parent::register();
$this->registerConfig();
$this->registerSidebarItems();
$this->registerProvider(Providers\PackagesServiceProvider::class);
}
* Boot the service provider.
public function boot()
parent::boot();
$this->registerProvider(Providers\RouteServiceProvider::class);
// Publishes
$this->publishConfig();
$this->publishViews();
$this->publishTranslations();
$this->publishSidebarItems();
* Get the services provided by the provider.
* @return array
public function provides()
return [
//
];