- Fix EventType deletion error handling (constraint violations) - Fix Event update error (package_id column missing) - Fix Event Type dropdown options (JSON display issue) - Fix EventPackagesRelationManager query error - Add missing translations for deletion errors - Apply Pint formatting
62 lines
1.6 KiB
PHP
62 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Tenant;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class PhotoStoreRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return true; // Authorization handled by middleware
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'photo' => [
|
|
'required',
|
|
'image',
|
|
'mimes:jpeg,png,webp',
|
|
'max:10240', // 10MB
|
|
],
|
|
'caption' => ['nullable', 'string', 'max:500'],
|
|
'alt_text' => ['nullable', 'string', 'max:255'],
|
|
'tags' => ['nullable', 'array', 'max:10'],
|
|
'tags.*' => ['string', 'max:50'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get custom validation messages.
|
|
*/
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'photo.required' => 'Ein Foto muss hochgeladen werden.',
|
|
'photo.image' => 'Die Datei muss ein Bild sein.',
|
|
'photo.mimes' => 'Nur JPEG, PNG und WebP Formate sind erlaubt.',
|
|
'photo.max' => 'Das Foto darf maximal 10MB groß sein.',
|
|
'caption.max' => 'Die Bildunterschrift darf maximal 500 Zeichen haben.',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Prepare the data for validation.
|
|
*/
|
|
protected function prepareForValidation()
|
|
{
|
|
$this->merge([
|
|
'tags' => $this->tags ? explode(',', $this->tags) : [],
|
|
]);
|
|
}
|
|
}
|