update api register

This commit is contained in:
Wian Drs
2026-08-01 11:42:42 +07:00
parent b0d08211ec
commit 75342dc7b7
55 changed files with 2254 additions and 35 deletions
@@ -0,0 +1,21 @@
<?php
namespace App\Http\Requests\Voucher;
use Illuminate\Foundation\Http\FormRequest;
class IndexVoucherRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'search' => ['nullable', 'string', 'max:100'], 'payment_status' => ['nullable', 'string', 'max:30'],
'per_page' => ['nullable', 'integer', 'min:1', 'max:100'], 'page' => ['nullable', 'integer', 'min:1'],
];
}
}
@@ -0,0 +1,24 @@
<?php
namespace App\Http\Requests\Voucher;
use Illuminate\Foundation\Http\FormRequest;
class SaveVoucherLoginPageRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'enabled' => ['required', 'boolean'], 'title' => ['required', 'string', 'max:150'],
'theme_color' => ['required', 'regex:/^#[0-9A-Fa-f]{6}$/'],
'allowed_package_profile_ids' => ['nullable', 'array'],
'allowed_package_profile_ids.*' => ['integer', 'exists:nas_package_profiles,id'],
'settings' => ['nullable', 'array'],
];
}
}
@@ -0,0 +1,27 @@
<?php
namespace App\Http\Requests\Voucher;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class StoreVoucherAgentRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'tenant_id' => ['nullable', 'integer', 'exists:tenants,id'], 'user_id' => ['required', 'integer', 'exists:users,id'],
'agent_code' => ['nullable', 'string', 'max:50'], 'payment_type' => ['required', Rule::in(['prepaid', 'postpaid'])],
'price_mode' => ['required', Rule::in(['discount', 'commission'])],
'discount_percent' => ['required', 'numeric', 'min:0', 'max:100'],
'commission_percent' => ['required', 'numeric', 'min:0', 'max:100'],
'credit_limit' => ['required', 'numeric', 'min:0'], 'status' => ['required', Rule::in(['active', 'inactive', 'suspended'])],
'notes' => ['nullable', 'string', 'max:2000'],
];
}
}
@@ -0,0 +1,22 @@
<?php
namespace App\Http\Requests\Voucher;
use Illuminate\Foundation\Http\FormRequest;
class StoreVoucherSaleRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'nas_package_profile_id' => ['required', 'integer', 'exists:nas_package_profiles,id'],
'nas_mikrotik_id' => ['nullable', 'integer', 'exists:nas_mikrotiks,id'],
'quantity' => ['required', 'integer', 'min:1', 'max:100'], 'notes' => ['nullable', 'string', 'max:2000'],
];
}
}