public function __construct(Filesystem $file, array $arguments)
 {
     parent::__construct($file, $arguments);
     $this->setFileName('index')->setFilePath('src/Resources/views')->setFileExtension('.blade.php')->setStubPath(__DIR__ . '/../templates/view.stub');
 }
 public function __construct(Filesystem $file, array $arguments)
 {
     parent::__construct($file, $arguments);
     $this->setFileName($this->getCamelCase($this->arguments('module')) . 'ServiceProvider')->setFilePath('src/')->setFileExtension('.php')->setStubPath(__DIR__ . '/../templates/service-provider.stub');
 }
 public function __construct(Filesystem $file, array $arguments)
 {
     parent::__construct($file, $arguments);
     $this->setFileName('post-composer')->setFileExtension('.php')->setStubPath(__DIR__ . '/../templates/post-composer.stub');
 }
 public function __construct(Filesystem $file, array $arguments)
 {
     parent::__construct($file, $arguments);
     $this->setFileName($this->getCamelCase($this->arguments('module')) . 'Controller')->setFilePath('src/Http/Controllers')->setFileExtension('.php')->setStubPath(__DIR__ . '/../templates/controller.stub');
 }
 public function __construct(Filesystem $file, array $arguments)
 {
     parent::__construct($file, $arguments);
     $this->setFilePath('src/Database/Seeders')->setStubPath(__DIR__ . '/../templates/controller.stub');
 }
 public function __construct(Filesystem $file, array $arguments)
 {
     parent::__construct($file, $arguments);
     $this->setFileName(str_replace(['_', '.'], '-', $this->arguments('module')) . '-config')->setFilePath('src/Config')->setFileExtension('.php')->setStubPath(__DIR__ . '/../templates/config.stub');
 }