Laravel 5 - Php artisan syntax error
Try this command:
php -S localhost:8000 -t public
Then execute it on browser, it will produce the error, just look at the error, and fix it.
I've found the error!
I had a syntax error on my routes.php file...
function($id,**name**,**value**)
Forgot the $ sign and thus it found a unexpected ','.
Thank you all for the help!