Created Resume component model
Some checks failed
linter / quality (push) Successful in 3m16s
tests / ci (push) Failing after 6m21s

This commit is contained in:
2025-08-16 13:13:00 +02:00
parent e3444ef799
commit fb3a5be414
6 changed files with 237 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class StoreResumeComponentRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return false;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
return [
//
];
}
}