У меня есть простой тест на вход в приложение
public function test_login_to_application_ok()
{
$this->post(route('login'), [
'email' => $this->user->email,
'password' => $this->user->password,
]);
$this->actingAs($this->user);
$this->followingRedirects()->get(route('editProfileForm', ['user' => $this->user->id]))->assertStatus(200);
}
В конце ожидаю редирект на нужный маршрут и 200-й статус, но в ответ получаю 500. По логам вижу ошибку
Missing parameter: user
, хотя параметр передаю. Юзера не видит совсем