feat: implement team standby status, helper persistence, and store portal foundations

This commit is contained in:
Developer
2026-07-02 12:02:13 +08:00
parent a9a1df93bd
commit a1470eb85e
32 changed files with 1371 additions and 82 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace App\Http\Controllers\Store;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class StoreDashboardController extends Controller
{
public function index()
{
return view('store.dashboard');
}
public function sales()
{
return view('store.sales');
}
public function inventory()
{
return view('store.inventory');
}
public function financials()
{
return view('store.financials');
}
}