I was config success to debug in PHP on VSCode.
My problem is when I run the project it always errors at the function:
protected function getJsonPayl
Your question seems to be a related post to this, which provides a pretty good answer. Also, my question to you is why are you using DecryptException
? Laravel has bcrypt
(for password hashing) and csrf tokens
(form data encryption) that are much easier to use.
For those looking for a quick answer without reading the comments:
Run these commands in Eloquent:
php artisan optimize
-> php artisan cache:clear
-> composer dump-autoload