publishes([
__DIR__.'/../../config/config.php' => config_path('Wkhtml2pdf.php')
], 'config');
}
public function register()
{
$this->app['wkhtml2pdf'] = $this->app->share(function($app)
{
return new Wkhtml2pdf(new LaravelConfig($app['config']), new LaravelView($app['view']));
});
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return array('wkhtml2pdf');
}
}