Add settings page pinned to sidebar footer like other Ladill apps.
Deploy Ladill Woo Manager / deploy (push) Successful in 38s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-06 23:52:37 +00:00
co-authored by Cursor
parent e4b6c2c1ba
commit f351030db4
5 changed files with 84 additions and 0 deletions
+11
View File
@@ -219,6 +219,17 @@ class WooWebTest extends TestCase
]);
}
public function test_authenticated_user_can_view_settings(): void
{
$user = User::factory()->create();
$this->actingAs($user)
->get(route('woo.settings'))
->assertOk()
->assertSee('Settings')
->assertSee('Manage connected stores');
}
public function test_merchant_can_view_products_page(): void
{
$user = User::factory()->create();