feat(lab): A 메뉴(AI/자동화) 12개, M 메뉴(관리) 11개 마이그레이션
- AIController 생성 (12개 메서드) - ManagementController 생성 (11개 메서드) - A 메뉴 플레이스홀더 템플릿 12개 생성 - 사업자등록증 OCR, 웹 녹음 AI 요약, 회의록 AI 요약 - 업무협의록 AI 요약, 운영자용 챗봇, Vertex RAG 챗봇 - 테넌트 지식 업로드, 테넌트 챗봇, SAM AI 메뉴 이동 - SAM AI 알람음 제작, GPS 출퇴근 관리, 기업개황 조회 - M 메뉴 플레이스홀더 템플릿 11개 생성 - 바로빌 테넌트 관리, 전자세금계산서 전략, 전자세금계산서 - 사업자등록번호 진위 확인, 영업관리 & 매니저 미팅관리 - 카드 세무항목 매칭 전략, 한국 카드사 API 보고서 - 카드 사용내역 수집 후 매칭, 계좌입출금 내역 조회 API - 영업관리 시나리오, 매니저 시나리오 - 라우트 23개 추가 (AI 12개, Management 11개) - 사이드바 메뉴 라우트 연결 완료 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
74
app/Http/Controllers/Lab/ManagementController.php
Normal file
74
app/Http/Controllers/Lab/ManagementController.php
Normal file
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Lab;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
|
||||
class ManagementController extends Controller
|
||||
{
|
||||
// 바로빌 테넌트 관리
|
||||
public function barobillTenant()
|
||||
{
|
||||
return view('lab.management.barobill-tenant');
|
||||
}
|
||||
|
||||
// 전자세금계산서 전략
|
||||
public function taxInvoiceStrategy()
|
||||
{
|
||||
return view('lab.management.tax-invoice-strategy');
|
||||
}
|
||||
|
||||
// 전자세금계산서
|
||||
public function taxInvoice()
|
||||
{
|
||||
return view('lab.management.tax-invoice');
|
||||
}
|
||||
|
||||
// 사업자등록번호 진위 확인
|
||||
public function businessVerify()
|
||||
{
|
||||
return view('lab.management.business-verify');
|
||||
}
|
||||
|
||||
// 영업관리 & 매니저 미팅관리
|
||||
public function salesMeeting()
|
||||
{
|
||||
return view('lab.management.sales-meeting');
|
||||
}
|
||||
|
||||
// 카드 세무항목 매칭 전략
|
||||
public function cardTaxMatching()
|
||||
{
|
||||
return view('lab.management.card-tax-matching');
|
||||
}
|
||||
|
||||
// 한국 카드사 API 보고서
|
||||
public function cardApiReport()
|
||||
{
|
||||
return view('lab.management.card-api-report');
|
||||
}
|
||||
|
||||
// 카드 사용내역 수집 후 매칭
|
||||
public function cardUsageMatching()
|
||||
{
|
||||
return view('lab.management.card-usage-matching');
|
||||
}
|
||||
|
||||
// 계좌입출금 내역 조회 API
|
||||
public function accountApi()
|
||||
{
|
||||
return view('lab.management.account-api');
|
||||
}
|
||||
|
||||
// 영업관리 시나리오
|
||||
public function salesScenario()
|
||||
{
|
||||
return view('lab.management.sales-scenario');
|
||||
}
|
||||
|
||||
// 매니저 시나리오
|
||||
public function managerScenario()
|
||||
{
|
||||
return view('lab.management.manager-scenario');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user