Some checks failed
tests / ci (pull_request) Has been cancelled
- 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.
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Admin\Manage\Academic;
|
|
|
|
use App\Enums\RegistrationStatus;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class CourseRegistrationRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
$registration = $this->route('course_registration');
|
|
|
|
return [
|
|
'student_id' => ['required', 'integer', Rule::exists('students', 'id')],
|
|
'academic_term_id' => ['required', 'integer', Rule::exists('academic_terms', 'id')],
|
|
'course_class_id' => [
|
|
'required',
|
|
'integer',
|
|
Rule::exists('course_classes', 'id'),
|
|
Rule::unique('course_registrations')
|
|
->where('student_id', $this->input('student_id'))
|
|
->ignore($registration?->id),
|
|
],
|
|
'status' => ['nullable', 'string', Rule::in(RegistrationStatus::values())],
|
|
'approved_by' => ['nullable', 'integer', Rule::exists('lecturers', 'id')],
|
|
];
|
|
}
|
|
|
|
public function attributes(): array
|
|
{
|
|
return [
|
|
'course_class_id' => 'kelas mata kuliah',
|
|
];
|
|
}
|
|
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'course_class_id.unique' => 'Mahasiswa ini sudah terdaftar pada kelas mata kuliah tersebut.',
|
|
];
|
|
}
|
|
}
|