Files
laravel-backend/app/Http/Requests/Component/ComponentStore.php
Joris Slagter df155bb13d
Some checks failed
continuous-integration/drone/push Build is failing
Initial Laravel API import
- 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
2025-12-02 17:40:21 +01:00

34 lines
625 B
PHP

<?php
namespace App\Http\Requests\Component;
use Illuminate\Foundation\Http\FormRequest;
class ComponentStore 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 [
'name' => 'required',
'description' => '',
'content' => '',
'component_type_id' => 'required',
];
}
}