Some checks failed
tests / ci (pull_request) Has been cancelled
- Implemented academic advising logs functionality with create, edit, and delete capabilities. - Created UI components for displaying academic advising logs in a data table format. - Added letter requests management with similar CRUD operations and UI components. - Refactored routes to organize academic classes, announcements, finances, and services under appropriate namespaces.
27 lines
718 B
PHP
27 lines
718 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Admin\Services;
|
|
|
|
use App\Enums\LetterStatus;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class LetterRequestRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'student_id' => ['required', 'integer', Rule::exists('students', 'id')],
|
|
'letter_type' => ['required', 'string', 'max:100'],
|
|
'purpose' => ['nullable', 'string'],
|
|
'status' => ['nullable', Rule::enum(LetterStatus::class)],
|
|
'result' => ['nullable', 'file', 'max:10240', 'mimes:pdf,jpg,jpeg,png,doc,docx'],
|
|
];
|
|
}
|
|
}
|