everybody. I'm new to Laravel development.
I have a web application developed with Laravel 6. That is developed by others and currently running on the Linux server.
I copied it to my Windows localhost and tried to run using WAMP. But I got HTTP 500 error in index.php
of the project root when browsing localhost:8000
.
The error is caused by the following part:
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
How can I fix this?