package('Nitmedia/Wkhtml2pdf');
}
/**
* Register the service provider.
*
* @return void
*/
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');
}
}