Appzcoder\CrudGenerator\Commands\CrudMigrationCommand::getPath PHP Method

getPath() protected method

Get the destination class path.
protected getPath ( string $name ) : string
$name string
return string
    protected function getPath($name)
    {
        $name = str_replace($this->laravel->getNamespace(), '', $name);
        $datePrefix = date('Y_m_d_His');
        return database_path('/migrations/') . $datePrefix . '_create_' . $name . '_table.php';
    }