update deploy

This commit is contained in:
bulut
2026-03-27 10:41:54 +03:00
parent 69d19c0176
commit 6f6448aa06
422 changed files with 37956 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<?php
namespace App\Http\Requests\Announcement;
use App\Enums\AnnouncementCategory;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class UpdateAnnouncementRequest 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('announcements', 'slug')->ignore($this->route('announcement'))],
'title' => ['sometimes', 'string', 'max:255'],
'category' => ['sometimes', 'string', Rule::enum(AnnouncementCategory::class)],
'excerpt' => ['nullable', 'string', 'max:500'],
'content' => ['sometimes', 'string'],
'image' => ['nullable', 'string', 'max:255'],
'is_featured' => ['sometimes', 'boolean'],
'meta_title' => ['nullable', 'string', 'max:255'],
'meta_description' => ['nullable', 'string', 'max:255'],
'published_at' => ['nullable', 'date'],
];
}
/**
* @return array<string, string>
*/
public function messages(): array
{
return [
'slug.unique' => 'Bu slug zaten kullanılıyor.',
];
}
}