D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
school.dentostock.com
/
Modules
/
Lesson
/
Http
/
Requests
/
Filename :
SmLessonTopicRequest.php
back
Copy
<?php namespace Modules\Lesson\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class SmLessonTopicRequest extends FormRequest { /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'class' => 'required', 'subject' => 'required', 'section' => 'required', 'lesson' => 'required', 'topic' =>"required|array", ]; } /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } }