php - problems while tying to load a image in Laravel with <img src={{route()}}

one text

Solution:

You should always try to post code as text, as it is text not images.

Now that you have figured out how to get the error for the requests that aren't working you can fix the issue.

Class 'App\Http\Controllers\Response' not found in file C:\wamp64\www\proyectos_Laravel\petcare_service\app\Http\Controllers\PetController.php on line 71

You didn't alias the Response class in your Controller:

use Response;
// or
use Illuminate\Support\Facades\Response;

Or (as mentioned in the comments) you can use the helper function instead of the facade:

response()

Source