Files
sam-api/app/Http/Requests/V1/Plan/PlanStoreRequest.php

30 lines
839 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Http\Requests\V1\Plan;
use App\Models\Tenants\Plan;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class PlanStoreRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'name' => ['required', 'string', 'max:100'],
'code' => ['required', 'string', 'max:50', 'unique:plans,code'],
'description' => ['nullable', 'string', 'max:500'],
'price' => ['required', 'numeric', 'min:0'],
'billing_cycle' => ['required', 'string', Rule::in(Plan::BILLING_CYCLES)],
'features' => ['nullable', 'array'],
'features.*' => ['string', 'max:200'],
'is_active' => ['nullable', 'boolean'],
];
}
}