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.
27 lines
755 B
PHP
27 lines
755 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Admin\Manage\Academic;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class ScheduleRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'course_class_id' => ['required', 'integer', Rule::exists('course_classes', 'id')],
|
|
'day_of_week' => ['nullable', 'string', 'max:15'],
|
|
'start_time' => ['nullable', 'date_format:H:i'],
|
|
'end_time' => ['nullable', 'date_format:H:i', 'after:start_time'],
|
|
'room' => ['nullable', 'string', 'max:20'],
|
|
'online_link' => ['nullable', 'string', 'max:255', 'url'],
|
|
];
|
|
}
|
|
}
|