Laralib\L5scaffold\Makes\MakeMigration::getPath PHP Method

getPath() protected method

Get the path to where we should store the migration.
protected getPath ( string $name ) : string
$name string
return string
    protected function getPath($name)
    {
        return './database/migrations/' . date('Y_m_d_His') . '_' . $name . '.php';
    }