app->singleton( Component::class ); $this->app->alias( Component::class, 'template/manager' ); } /** * Boots the manager by firing its hooks in the `boot()` method. * * @since 3.0.0 * @access public * @return void */ public function boot() { $this->app->resolve( 'template/manager' )->boot(); } }