Amranidev\ScaffoldInterface\Generators\Generator::show PHP Method

show() public method

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

Usage Example

Ejemplo n.º 1
0
 /**
  * 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;
 }