Black Pirates
Black Pirates

Reputation: 31

Object of type Illuminate\\Http\\Request is not callable, Laravel 8 upload file

Console Log Error

UnitController

is there someone who can help me to solve this problem?

Upvotes: 3

Views: 6084

Answers (1)

BlackPearl
BlackPearl

Reputation: 2775

You can use the Request in the following ways:

request('lastName')
$request->lastName

In line 65 of the attached image, change $request() to request(). Simply remove the dollar sign.

Upvotes: 5

Related Questions