Amranidev\ScaffoldInterface\Filesystem\Path::showPath PHP Method

showPath() public method

Get show file path.
public showPath ( ) : string
return string
    public function showPath()
    {
        return config('amranidev.config.views') . '/' . $this->parser->singular() . '/' . 'show.blade.php';
    }

Usage Example

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