25 lines
640 B
PHP
25 lines
640 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Notifications;
|
|
|
|
use App\Http\Requests\ApiFormRequest;
|
|
|
|
class NotificationIndexRequest extends ApiFormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return $this->user() !== null;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'read' => ['nullable', 'boolean'],
|
|
'page' => ['nullable', 'integer', 'min:1'],
|
|
'per_page' => ['nullable', 'integer', 'min:1', 'max:200'],
|
|
'sort_by' => ['nullable', 'string', 'in:created_at,scheduled_at,priority'],
|
|
'sort_dir' => ['nullable', 'string', 'in:asc,desc'],
|
|
];
|
|
}
|
|
}
|