update deploy
This commit is contained in:
42
app/Http/Requests/Menu/UpdateMenuRequest.php
Normal file
42
app/Http/Requests/Menu/UpdateMenuRequest.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests\Menu;
|
||||
|
||||
use App\Enums\MenuLocation;
|
||||
use App\Enums\MenuType;
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
use Illuminate\Validation\Rule;
|
||||
|
||||
class UpdateMenuRequest extends FormRequest
|
||||
{
|
||||
public function authorize(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, array<int, mixed>>
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'label' => ['sometimes', 'string', 'max:255'],
|
||||
'url' => ['sometimes', 'string', 'max:255'],
|
||||
'location' => ['sometimes', 'string', Rule::enum(MenuLocation::class)],
|
||||
'type' => ['sometimes', 'string', Rule::enum(MenuType::class)],
|
||||
'parent_id' => ['nullable', 'integer', 'exists:menus,id'],
|
||||
'order_index' => ['sometimes', 'integer', 'min:0'],
|
||||
'is_active' => ['sometimes', 'boolean'],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, string>
|
||||
*/
|
||||
public function messages(): array
|
||||
{
|
||||
return [
|
||||
'parent_id.exists' => 'Üst menü bulunamadı.',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user