- MngMenuSeeder에 바로빌 그룹메뉴와 회원사관리 하위메뉴 추가 - BarobillController 생성 (회원사관리 페이지) - /barobill/members 라우트 추가 - 회원사관리 기본 뷰 파일 생성 (샘플 테이블 포함) 메뉴 적용: php artisan db:seed --class=MngMenuSeeder Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
339 B
PHP
21 lines
339 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Barobill;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\View\View;
|
|
|
|
/**
|
|
* 바로빌 컨트롤러
|
|
*/
|
|
class BarobillController extends Controller
|
|
{
|
|
/**
|
|
* 회원사관리 페이지
|
|
*/
|
|
public function members(): View
|
|
{
|
|
return view('barobill.members.index');
|
|
}
|
|
}
|