29 lines
872 B
PHP
29 lines
872 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Requests\Collections;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class CollectionProgramAssignmentRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return $this->user() !== null;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'collection_id' => ['required', 'integer', 'exists:collections,id'],
|
|
'program_key' => ['required', 'string', 'max:80'],
|
|
'campaign_key' => ['nullable', 'string', 'max:80'],
|
|
'placement_scope' => ['nullable', 'string', 'max:80'],
|
|
'starts_at' => ['nullable', 'date'],
|
|
'ends_at' => ['nullable', 'date', 'after:starts_at'],
|
|
'priority' => ['nullable', 'integer', 'min:-100', 'max:100'],
|
|
'notes' => ['nullable', 'string', 'max:1000'],
|
|
];
|
|
}
|
|
} |