require __DIR__.'require __DIR__.'/../public/vendor/autoloader.php';';
I have have tried to run this and i get the following error
Parse error: syntax error, unexpected '.' in C:\xampp\htdocs\Laravel\demo\public\index.php on line 27
require __DIR__.'require __DIR__.'/../public/vendor/autoloader.php';';
I have have tried to run this and i get the following error
Parse error: syntax error, unexpected '.' in C:\xampp\htdocs\Laravel\demo\public\index.php on line 27
You've somehow managed to paste the require
call into another copy of itself.
The entire line should simply be:
require __DIR__.'/../public/vendor/autoloader.php';