Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to rollback effects of php artisan make:auth in laravel 5

Tags:

php

laravel-5

I am new to laravel.

I was in middle of my project. I googled for login validation in laravel 5.

I found this command

php artisan make:auth

it Created several classes and also modified my welcome.blade.php

there was several code in welcome.blade.php. Now How to rollback effects of this command.

Please Help.

like image 919
Ankit21ks Avatar asked Feb 05 '16 05:02

Ankit21ks


1 Answers

The answer is NO. There is no way you can rollback make:auth command as yet in laravel.. You can remove auth manually be removing auth from app controller and and auth route. And if you were lucky enough to have welcome file opened in some IDE then there was a chance of ctrl+z bcause IDEs keep back in memory,., but other then that there is no way retrieving backup the data.

like image 86
Inzmam ul Hassan Avatar answered Oct 04 '22 01:10

Inzmam ul Hassan