Files
alrahma_sunday_school_api/app/Http/Requests/Finance/FinanceNotificationLogRequest.php
T
2026-06-09 00:03:03 -04:00

25 lines
572 B
PHP

<?php
namespace App\Http\Requests\Finance;
use Illuminate\Foundation\Http\FormRequest;
class FinanceNotificationLogRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'status' => ['nullable', 'string', 'max:40'],
'notification_type' => ['nullable', 'string', 'max:80'],
'parent_id' => ['nullable', 'integer'],
'date_from' => ['nullable', 'date'],
'date_to' => ['nullable', 'date'],
];
}
}