add projet

This commit is contained in:
root
2026-03-05 12:29:37 -05:00
parent 8d1eef8ba8
commit 23b7db1107
9109 changed files with 1106501 additions and 73 deletions
@@ -0,0 +1,22 @@
<?php
namespace App\Http\Requests\Admin;
use Illuminate\Foundation\Http\FormRequest;
class SendTeacherSubmissionNotificationsRequest extends FormRequest
{
public function authorize(): bool
{
return true; // protected by auth/admin middleware
}
public function rules(): array
{
return [
'notify' => ['required', 'array', 'min:1'],
// nested keys are dynamic [section_id][teacher_id], keep flexible
'missing_items' => ['nullable', 'array'],
];
}
}