make() публичный Метод

Compile routes template and generate
public make ( string $path, string $name, array $options = [] ) : boolean
$path string
$name string
$options array
Результат boolean
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function fire()
 {
     $path = $this->getPath();
     $options = ['filter' => $this->option('filter'), 'object' => $this->option('object'), 'prefix' => $this->option('prefix')];
     if ($this->generator->make($this->option('path'), $this->argument('name'), $options)) {
         return $this->info("Created {$path}");
     }
     $this->error("Could not create {$path}");
 }