Laravel Inertia Vue
I`m new to laravel and i try to do a crud tutorial but donesn t work the update method. This is the controller public function update(UserRequest $request, User $user) { $avatar = $user->avatar; if(Request::file('avatar')){ Storage::delete('public/'. $user->avatar); $avatar = Request::file('avatar')->store('users', 'public');…