Amranidev\ScaffoldInterface\Generators\Generator::show PHP Méthode

show() public méthode

Generate show.
public show ( ) : void
Résultat void
    public function show()
    {
        $this->make($this->paths->showPath(), $this->view->generateShow());
    }

Usage Example

 /**
  * Scaffold Views.
  *
  * @return \Amranidev\ScaffoldInterface\Scaffold
  */
 public function views()
 {
     $this->generator->dir();
     $this->generator->index();
     $this->generator->create();
     $this->generator->show();
     $this->generator->edit();
     return $this;
 }