Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
32 lines
601 B
PHP
32 lines
601 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Page;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class ComponentPageStore 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 [
|
|
"page_id" => 'required|numeric',
|
|
"content" => '',
|
|
"component_type_id" => 'required',
|
|
];
|
|
}
|
|
} |