TIF_E41200744/app/Http/Requests/CreateSubCriteriaRequest.php

30 lines
518 B
PHP

<?php
namespace App\Http\Requests;
use App\Models\SubCriteria;
use Illuminate\Foundation\Http\FormRequest;
class CreateSubCriteriaRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return SubCriteria::$rules;
}
}