- /customer-center 라우트 신규 생성 - 활성화된 시스템 게시판만 표시 - 테이블 컬럼: ID, 유형, 코드, 게시판명, 게시글 수, 생성일 - 관리 기능(구분, 필드, 상태, 액션) 제외한 읽기 전용 뷰 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
430 B
PHP
22 lines
430 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Services\BoardService;
|
|
use Illuminate\View\View;
|
|
|
|
class CustomerCenterController extends Controller
|
|
{
|
|
public function __construct(
|
|
private readonly BoardService $boardService
|
|
) {}
|
|
|
|
/**
|
|
* 고객센터 게시판 목록 (활성화된 시스템 게시판만)
|
|
*/
|
|
public function index(): View
|
|
{
|
|
return view('customer-center.index');
|
|
}
|
|
}
|