Full reset
rm -rf node_modules
rm package-lock.json yarn.lock
npm cache clear --force
npm install
Full reset
rm -rf node_modules
rm package-lock.json yarn.lock
npm cache clear --force
npm install
Full reset
rm -rf node_modules
rm package-lock.json yarn.lock
npm cache clear --force
npm install
Full reset
rm -rf node_modules
rm package-lock.json yarn.lock
npm cache clear --force
npm install
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
Go to https://github.com/settings/tokens to get your Github Token and put it in the auth.json configuration file
{
"github-oauth": {
"github.com": "<<YOUR TOKEN>>"
}
}
Add this method to app/Http/Controllers/Auth/LoginController.php
public function showLoginForm()
{
return view('auth.login');
}
// Thats the Closure
// v
Route::get('/some/route', function() {
return 'Hello World';
});
Use
Route::get('/', 'YourController@index');
php artisan clear-compiled
On the main menu, choose File | Invalidate Caches/Restart. The Invalidate Caches message appears informing you that the caches will be invalidated and rebuilt on the next start. Use buttons in the dialog to invalidate caches, restart PhpStorm or both.
php artisan key:generate
php artisan config:cache