You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a RILT application, on GET request I can see the log in the browser bar but any non GET request nothing happens even though capture_ajax is set to true.
public function edit(Request $request): Response
{
debug('Works');
return Inertia::render('Profile/Edit', [
'mustVerifyEmail' => $request->user() instanceof MustVerifyEmail,
'status' => session('status'),
]);
}
/**
* Update the user's profile information.
*/
public function update(ProfileUpdateRequest $request)
{
debug('Does Not Works');
$this->profileManagerAction->update_profile($request);
return Redirect::route('profile.edit');
}
I have a RILT application, on GET request I can see the log in the browser bar but any non GET request nothing happens even though capture_ajax is set to true.
The text was updated successfully, but these errors were encountered: