Answer the question
In order to leave comments, you need to log in
How to make a test for middleware?
You can open the /create page only for those who are logged in
Route::get('/create', '[email protected]')->middleware('user');
public function testCreateImgTest()
{
$response = $this->get('/create');
$response->assertStatus(200);
}
Answer the question
In order to leave comments, you need to log in
public function testCreateImgTest()
{
$this->actingAs($someExistingUser);
$this->get('/create')->assertOk();
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question