nikelioum/migration-guru

A small Laravel 12 package to manage migrations from a web UI

v1.1.2 2025-10-01 12:44 UTC

This package is auto-updated.

Last update: 2025-10-01 12:46:37 UTC


README

A Laravel 12 package to manage migrations from a simple web UI.
It allows you to create,edit, run, rollback, and delete migrations without touching the terminal.

**Also for Laravel 10 & 11 versions.

📸 Screenshots

Dashboard

Migration Guru Dashboard

Create Migration

Create Migration UI

Edit Migration

Create Migration UI

History Migration logs

Create Migration UI

📦 Installation

Require the package via Composer:

composer require nikelioum/migration-guru

Laravel will auto-discover the service provider.

Publish

Publish config and views:

php artisan vendor:publish --tag=migration-guru

🚀 Usage

Once installed, visit the following routes in your browser:

Dashboard (list migrations): /migration-guru

Create new migration: /migration-guru/create

Edit migration: Click the Edit button in the dashboard to open an online IDE with syntax highlighting and live PHP validation.

Run a migration: Trigger from the UI (button inside dashboard).

Rollback / Delete: Trigger from the UI (buttons inside dashboard).

✨ Features

Web UI to manage migrations

Create migration scaffolds with fields

Run single or bulk migrations

Rollback or delete migrations

Supports auto-increment, nullable, varchar length, etc.

🔖 Versioning

The package follows Semantic Versioning . For example:

v1.0.0 – first stable release

v1.0.1 – bug fixes

v1.1.0 – new features