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');
|
||
|
|
}
|
||
|
|
}
|