Evercode1\ViewMaker\ConfiguresCrudInput::setFilePaths PHP Method

setFilePaths() private method

private setFilePaths ( )
    private function setFilePaths()
    {
        $this->fileWritePaths['model'] = base_path() . '/app/' . $this->crudTokens['upperCaseModelName'] . '.php';
        $this->fileWritePaths['controller'] = base_path() . '/app/Http/Controllers/' . $this->crudTokens['controllerName'] . '.php';
        $this->fileWritePaths['apiController'] = base_path() . '/app/Http/Controllers/ApiController.php';
        $this->fileAppendPaths['routes'] = base_path() . '/app/Http/routes.php';
        $this->fileWritePaths['migration'] = base_path() . '/database/migrations/' . date('Y_m_d_His') . '_create_' . $this->crudTokens['tableName'] . '_table' . '.php';
        $this->fileAppendPaths['factory'] = base_path() . '/database/factories/ModelFactory.php';
        $this->fileWritePaths['test'] = base_path() . '/tests/' . $this->crudTokens['upperCaseModelName'] . 'Test.php';
    }