Migrator is a GUI Migration Manager for Laravel
Published on by Paul Redmond
Migrator is a GUI migration manager for Laravel in which you can create, migrate, delete, and roll back your migrations. It provides a simple interface powered by Livewire that enables you to see the status of each migration easily, refresh migrations using your configured database, and run migrations:
By default, the /migrator
UI is locked down via auth middleware, and you can configure both the route of the migrator UI and the middleware (or group) that runs for the migrator route.
When you add new migrations via the GUI, the appropriate migration file is added to your project as if you run the artisan make:migration
command.
You can learn more about this package, get full installation instructions, and view the source code on GitHub.