mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00

* Add Nullable * Edit filament & AppServiceProvider * Pint * Patch tests * Actually patching tests * Actually patching tests * Remove length * Remove defaultStringLength * Let’s see the differences --------- Co-authored-by: Lance Pioch <git@lance.sh>
25 lines
683 B
PHP
25 lines
683 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Admin\Egg;
|
|
|
|
use App\Models\EggVariable;
|
|
use App\Http\Requests\Admin\AdminFormRequest;
|
|
|
|
class EggVariableFormRequest extends AdminFormRequest
|
|
{
|
|
/**
|
|
* Define rules for validation of this request.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => 'required|string|min:1|max:255',
|
|
'description' => 'sometimes|nullable|string',
|
|
'env_variable' => 'required|regex:/^[\w]{1,255}$/|notIn:' . EggVariable::RESERVED_ENV_NAMES,
|
|
'options' => 'sometimes|required|array',
|
|
'rules' => 'bail|required|string',
|
|
'default_value' => 'present',
|
|
];
|
|
}
|
|
}
|