i would love to use your voyager package on a ongoing project.
but when i tried to install it, i got the error, that the post table already exists.
second trouble was the uninstall process, i saw quite a lot migrations and seed files, would love to see a uninstall task / process...
+1
Need an uninstall.
how we can uninstall voyager ?
Hare are the steps to remove voyager. I also installed the voyager front-end.
composer remove pvtl/voyager-frontend
composer remove tcg/voyager
Remove these routes from web.php file
Route::group(['prefix' => 'admin'], function () {
Voyager::routes();
});
Remove the parent class from app/User.php file and extend it from "Authenticatable". Below is the example how the user.php file look like.
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
I believe you'll also wanna remove the hook repo from composer.json that gets added with Voyager:
"hooks": {
"type": "composer",
"url": "https://larapack.io"
}
This will be implemented in Version 2.0 馃憤 Adding it to the 2.0 planning project: https://github.com/the-control-group/voyager/projects/6
This issue has been automatically locked since there has not been any recent activity after it was closed. If you have further questions please ask in our Slack group.
Most helpful comment
+1
Need an uninstall.