| Package Data | |
|---|---|
| Maintainer Username: | Hesto | 
| Maintainer Contact: | losiakp@gmail.com (Hesto) | 
| Package Create Date: | 2016-08-13 | 
| Package Last Update: | 2016-12-06 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-30 03:10:07 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 84 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 1 | 
| Total Watchers: | 1 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
make:view
make:view:tab
make:view:lang
make:controller:template
make:route:controller
composer require hesto/generators
You'll only want to use these generators for local development, so you don't want to update the production  providers array in config/app.php. Instead, add the provider in app/Providers/AppServiceProvider.php, like so:
public function register()
{
	if ($this->app->environment() == 'local') {
		$this->app->register('Hesto\Generators\GeneratorsServiceProvider');
	}
}
Just use
php artisan vendor:publish
and a hesto/generators.php file will be created in your app/config directory.