siakad-itm/app/Http/Requests/Admin/Manage/Academic/SubmissionRequest.php
Yoga Pangestu 353829e053
Some checks failed
tests / ci (pull_request) Has been cancelled
feat: Refactor Admin Manage structure into sub-namespaces for better organization
- Created sub-namespaces under Admin\Manage for Course, Academic, Announcement, Finance, and Service.
- Added new FormRequest classes for handling validation in each sub-namespace.
- Implemented Service classes for managing business logic related to each resource.
- Updated routes to reflect the new sub-namespace structure.
- Enhanced code organization and maintainability by grouping related functionalities.
2026-08-25 21:17:48 +07:00

42 lines
1.2 KiB
PHP

<?php
namespace App\Http\Requests\Admin\Manage\Academic;
use App\Enums\SubmissionStatus;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class SubmissionRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
$assignment = $this->route('assignment');
$submission = $this->route('submission');
$rules = [
'notes' => ['nullable', 'string'],
'status' => ['required', Rule::enum(SubmissionStatus::class)],
'submitted_at' => ['nullable', 'date'],
'score' => ['nullable', 'numeric', 'min:0', 'max:100'],
'lecturer_feedback' => ['nullable', 'string'],
'file' => ['nullable', 'file', 'max:10240', 'mimes:pdf,doc,docx,ppt,pptx,xls,xlsx,jpg,jpeg,png,mp4,zip'],
];
if (! $submission) {
$rules['student_id'] = [
'required',
'integer',
Rule::exists('class_enrollments', 'student_id')->where('course_class_id', $assignment->course_class_id),
Rule::unique('submissions', 'student_id')->where('assignment_id', $assignment->id),
];
}
return $rules;
}
}