MohmmedAshraf / laravel-translations

Laravel Translations UI package provides a user-friendly interface for managing translations in your Laravel application. It simplifies tasks such as adding, editing, deleting, and exporting translations. The package also includes a handy search feature and the ability to invite collaborators for easy translation management
MIT License
648 stars 91 forks source link

Added the function to reverse the migration for this package #17

Closed Goatform closed 1 year ago

Goatform commented 1 year ago

Title and the code are self-explanatory, nothing that complex overall.

All it does is using already existing function (logic) down() from Laravel Migration class Giving you the ability to revert the changes done to database (removing tables that were added) using php artisan rollback

NOTE: Tested on fresh Laravel v9.48.0 (PHP v8.2.0) project and works without the issues.

P.S: Thanks for this awesome package you made, I'll try to contribute to it whenever I can 👍

MohmmedAshraf commented 1 year ago

@Goatform Thank you so much.