siakad-itm/app/Http/Requests/Admin/AcademicClasses/AssignmentRequest.php
Yoga Pangestu 4980ad95b3 Refactor assignment management system
- Updated the PermissionCatalog to remove unnecessary permissions for assignment submissions.
- Modified RolePermissionSeeder to align with the updated permissions.
- Enhanced useServerTable hook to support resetKeys for Inertia's reset visit option.
- Removed obsolete columns.tsx file related to assignment columns.
- Revamped assignment index page to utilize InfiniteScroll and improved UI components.
- Introduced new assignment status management with enums and updated database schema.
- Created GradeSubmissionRequest for validation of submission grading.
- Implemented score editing functionality in submission index with real-time updates.
- Added accordion component for better UI organization in assignment descriptions.
2026-09-03 09:51:27 +07:00

36 lines
1.1 KiB
PHP

<?php
namespace App\Http\Requests\Admin\AcademicClasses;
use App\Enums\AssignmentStatus;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class AssignmentRequest extends FormRequest
{
public function authorize(): bool
{
return $this->user()->can($this->isMethod('post') ? 'create-assignments' : 'update-assignments');
}
public function rules(): array
{
$user = $this->user();
$courseClassRule = Rule::exists('course_classes', 'id');
if ($user->hasRole('dosen')) {
$courseClassRule->where('lecturer_id', $user->lecturer?->id);
}
return [
'course_class_id' => ['required', 'integer', $courseClassRule],
'title' => ['required', 'string', 'max:150'],
'description' => ['nullable', 'string'],
'deadline' => ['required', 'date'],
'status' => ['nullable', Rule::enum(AssignmentStatus::class)],
'attachment' => ['nullable', 'file', 'max:10240', 'mimes:pdf,doc,docx,ppt,pptx,xls,xlsx,jpg,jpeg,png,mp4,zip'],
];
}
}