Skip to content

Instantly share code, notes, and snippets.

@tabacitu
Last active April 20, 2020 09:05
  • Star 17 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save tabacitu/dbcfd71375e72c857474 to your computer and use it in GitHub Desktop.
Tabacitu Laravel Package Service Provider boilerplate code
<?php
namespace League\Skeleton;
use Illuminate\Support\ServiceProvider;
use Illuminate\Routing\Router;
class SkeletonServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
{
// use this if your package has views
$this->loadViewsFrom(realpath(__DIR__.'/resources/views'), 'skeleton');
// use this if your package has lang files
$this->loadTranslationsFrom(__DIR__.'/resources/lang', 'skeleton');
// use this if your package has routes
$this->setupRoutes($this->app->router);
// use this if your package needs a config file
// $this->publishes([
// __DIR__.'/config/config.php' => config_path('skeleton.php'),
// ]);
// use the vendor configuration file as fallback
// $this->mergeConfigFrom(
// __DIR__.'/config/config.php', 'skeleton'
// );
}
/**
* Define the routes for the application.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public function setupRoutes(Router $router)
{
$router->group(['namespace' => 'League\Skeleton\Http\Controllers'], function($router)
{
require __DIR__.'/Http/routes.php';
});
}
/**
* Register any package services.
*
* @return void
*/
public function register()
{
$this->registerSkeleton();
// use this if your package has a config file
// config([
// 'config/skeleton.php',
// ]);
}
private function registerSkeleton()
{
$this->app->bind('skeleton',function($app){
return new Skeleton($app);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment