Answer the question
In order to leave comments, you need to log in
Why does the page redirect to itself?
I write tests. Here is the test itself:
$response = $this->get('fillProfile');
$response->assertStatus(200);
Route::get('fillProfile', '[email protected]')->name('fillProfile');
$user = User::findOrFail(Auth::id());
if($user->status == User::USER_IS_PROFILED) {
return abort(404, 'Страница не найдена');
}
return view('profile.fillProfile', [
'title' => 'Заполнение профиля'
]);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question