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

21 lines
548 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'],
];
}
}