Files
sam-api/app/Http/Requests/V1/BankAccount/StoreBankAccountRequest.php
hskwon e1b0c99d5d feat: 2.3 카드/계좌 관리 API 구현
- cards, bank_accounts 테이블 마이그레이션
- Card, BankAccount 모델 (카드번호 암호화)
- CardService, BankAccountService
- CardController, BankAccountController + FormRequest 4개
- API 엔드포인트 15개 (카드 7개, 계좌 8개)
- Swagger 문서 (CardApi.php, BankAccountApi.php)
2025-12-17 21:02:20 +09:00

54 lines
2.2 KiB
PHP

<?php
namespace App\Http\Requests\V1\BankAccount;
use Illuminate\Foundation\Http\FormRequest;
class StoreBankAccountRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'bank_code' => ['required', 'string', 'max:10'],
'bank_name' => ['required', 'string', 'max:50'],
'account_number' => ['required', 'string', 'max:30', 'regex:/^[\d-]+$/'],
'account_holder' => ['required', 'string', 'max:50'],
'account_name' => ['required', 'string', 'max:100'],
'status' => ['nullable', 'string', 'in:active,inactive'],
'assigned_user_id' => ['nullable', 'integer', 'exists:users,id'],
'is_primary' => ['nullable', 'boolean'],
];
}
public function messages(): array
{
return [
'bank_code.required' => __('validation.required', ['attribute' => __('validation.attributes.bank_code')]),
'bank_name.required' => __('validation.required', ['attribute' => __('validation.attributes.bank_name')]),
'account_number.required' => __('validation.required', ['attribute' => __('validation.attributes.account_number')]),
'account_number.regex' => __('validation.account_number_format'),
'account_holder.required' => __('validation.required', ['attribute' => __('validation.attributes.account_holder')]),
'account_name.required' => __('validation.required', ['attribute' => __('validation.attributes.account_name')]),
];
}
public function attributes(): array
{
return [
'bank_code' => __('validation.attributes.bank_code'),
'bank_name' => __('validation.attributes.bank_name'),
'account_number' => __('validation.attributes.account_number'),
'account_holder' => __('validation.attributes.account_holder'),
'account_name' => __('validation.attributes.account_name'),
'status' => __('validation.attributes.status'),
'assigned_user_id' => __('validation.attributes.assigned_user_id'),
'is_primary' => __('validation.attributes.is_primary'),
];
}
}