- 라우트 등록 (web.php: Blade 화면, api.php: HTMX API) - Blade 뷰 생성 (index, create, edit) - Partial 템플릿 생성 (table with pagination) - HTMX 통합 (비동기 CRUD, 필터링, 페이지네이션) - Pure Tailwind CSS 스타일링 - 실시간 검색 및 상태 필터 - 삭제/복원 기능 구현
192 lines
10 KiB
PHP
192 lines
10 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', '테넌트 생성')
|
|
|
|
@section('content')
|
|
<div class="container mx-auto max-w-4xl">
|
|
<!-- 페이지 헤더 -->
|
|
<div class="flex justify-between items-center mb-6">
|
|
<h1 class="text-2xl font-bold text-gray-800">테넌트 생성</h1>
|
|
<a href="{{ route('tenants.index') }}" class="text-gray-600 hover:text-gray-800">
|
|
← 목록으로
|
|
</a>
|
|
</div>
|
|
|
|
<!-- 폼 영역 -->
|
|
<div class="bg-white rounded-lg shadow-sm p-6">
|
|
<form id="tenantForm"
|
|
hx-post="/api/admin/tenants"
|
|
hx-headers='{"X-CSRF-TOKEN": "{{ csrf_token() }}"}'
|
|
hx-swap="none">
|
|
|
|
<!-- 기본 정보 -->
|
|
<div class="mb-8">
|
|
<h2 class="text-lg font-semibold text-gray-800 mb-4 pb-2 border-b">기본 정보</h2>
|
|
<div class="grid grid-cols-2 gap-4">
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">
|
|
회사명 <span class="text-red-500">*</span>
|
|
</label>
|
|
<input type="text" name="company_name" required
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">
|
|
테넌트 코드 <span class="text-red-500">*</span>
|
|
</label>
|
|
<input type="text" name="code" required
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">이메일</label>
|
|
<input type="email" name="email"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">전화번호</label>
|
|
<input type="text" name="phone"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 회사 정보 -->
|
|
<div class="mb-8">
|
|
<h2 class="text-lg font-semibold text-gray-800 mb-4 pb-2 border-b">회사 정보</h2>
|
|
<div class="grid grid-cols-2 gap-4">
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">사업자등록번호</label>
|
|
<input type="text" name="business_num"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">법인등록번호</label>
|
|
<input type="text" name="corp_reg_no"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">대표자명</label>
|
|
<input type="text" name="ceo_name"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">팩스</label>
|
|
<input type="text" name="fax"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div class="col-span-2">
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">주소</label>
|
|
<input type="text" name="address"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div class="col-span-2">
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">홈페이지</label>
|
|
<input type="url" name="homepage"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 구독 정보 -->
|
|
<div class="mb-8">
|
|
<h2 class="text-lg font-semibold text-gray-800 mb-4 pb-2 border-b">구독 정보</h2>
|
|
<div class="grid grid-cols-2 gap-4">
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">
|
|
상태 <span class="text-red-500">*</span>
|
|
</label>
|
|
<select name="tenant_st_code" required
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
<option value="trial">트라이얼</option>
|
|
<option value="active">활성</option>
|
|
<option value="suspended">정지</option>
|
|
<option value="expired">만료</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">결제 유형</label>
|
|
<select name="billing_tp_code"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
<option value="">선택 안함</option>
|
|
<option value="monthly">월간</option>
|
|
<option value="yearly">연간</option>
|
|
<option value="free">무료</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">최대 사용자 수</label>
|
|
<input type="number" name="max_users" value="10" min="1"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">트라이얼 종료일</label>
|
|
<input type="datetime-local" name="trial_ends_at"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">구독 만료일</label>
|
|
<input type="datetime-local" name="expires_at"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">마지막 결제일</label>
|
|
<input type="datetime-local" name="last_paid_at"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 관리 메모 -->
|
|
<div class="mb-8">
|
|
<h2 class="text-lg font-semibold text-gray-800 mb-4 pb-2 border-b">관리자 메모</h2>
|
|
<textarea name="admin_memo" rows="3"
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
|
|
</div>
|
|
|
|
<!-- 버튼 영역 -->
|
|
<div class="flex justify-end gap-3">
|
|
<a href="{{ route('tenants.index') }}"
|
|
class="px-6 py-2 border border-gray-300 rounded-lg text-gray-700 hover:bg-gray-50 transition">
|
|
취소
|
|
</a>
|
|
<button type="submit"
|
|
class="px-6 py-2 bg-blue-600 hover:bg-blue-700 text-white rounded-lg transition">
|
|
생성
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
|
|
<script>
|
|
// HTMX 응답 처리
|
|
document.body.addEventListener('htmx:afterRequest', function(event) {
|
|
if (event.detail.target.id === 'tenantForm') {
|
|
const response = JSON.parse(event.detail.xhr.response);
|
|
if (response.success) {
|
|
alert(response.message);
|
|
window.location.href = response.redirect;
|
|
} else {
|
|
alert('오류: ' + (response.message || '테넌트 생성에 실패했습니다.'));
|
|
}
|
|
}
|
|
});
|
|
|
|
// 에러 처리
|
|
document.body.addEventListener('htmx:responseError', function(event) {
|
|
if (event.detail.xhr.status === 422) {
|
|
const errors = JSON.parse(event.detail.xhr.response).errors;
|
|
let errorMsg = '입력 오류:\n';
|
|
for (let field in errors) {
|
|
errorMsg += '- ' + errors[field].join('\n') + '\n';
|
|
}
|
|
alert(errorMsg);
|
|
} else {
|
|
alert('서버 오류가 발생했습니다.');
|
|
}
|
|
});
|
|
</script>
|
|
@endpush |