Files
bogazici-api/app/Http/Requests/Page/UpdatePageRequest.php
2026-03-27 10:41:54 +03:00

44 lines
1.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace App\Http\Requests\Page;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class UpdatePageRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
/**
* @return array<string, array<int, mixed>>
*/
public function rules(): array
{
return [
'slug' => ['sometimes', 'string', 'max:255', Rule::unique('pages', 'slug')->ignore($this->route('page'))],
'title' => ['sometimes', 'string', 'max:255'],
'content' => ['nullable', 'string'],
'meta_title' => ['nullable', 'string', 'max:255'],
'meta_description' => ['nullable', 'string', 'max:255'],
'is_active' => ['sometimes', 'boolean'],
'blocks' => ['sometimes', 'array'],
'blocks.*.type' => ['required_with:blocks', 'string', 'max:50'],
'blocks.*.content' => ['required_with:blocks', 'array'],
'blocks.*.order_index' => ['sometimes', 'integer', 'min:0'],
];
}
/**
* @return array<string, string>
*/
public function messages(): array
{
return [
'slug.unique' => 'Bu slug zaten kullanılıyor.',
];
}
}