create(['planner_id' => $planner->id, 'name' => 'Test Dish']); loginAs($planner, '/dishes') ->assertPathIs('/dishes') ->assertSee('MANAGE DISHES') ->assertSee('Edit'); }); it('shows the edit modal components', function () { loginAndGoToDishes() ->assertSee('MANAGE DISHES') ->assertSee('Add Dish'); }); it('renders the dishes page structure', function () { $planner = createPlanner(); Dish::factory()->create(['planner_id' => $planner->id, 'name' => 'Test Dish']); loginAs($planner, '/dishes') ->assertSee('Edit') ->assertSee('Delete'); });