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
@@ -0,0 +1,14 @@
<?php
namespace App\Http\Controllers\Woo;
use App\Http\Controllers\Controller;
use Illuminate\View\View;
class SettingsController extends Controller
{
public function edit(): View
{
return view('woo.settings');
}
}