better collection handlich in backend

This commit is contained in:
Arno Kaimbacher 2018-10-04 16:41:29 +02:00
parent 324eacf061
commit 50bcae442e
24 changed files with 623 additions and 68 deletions

View file

@ -0,0 +1,34 @@
<?php
namespace App\Http\Requests\Collection;
use App\Http\Requests\Request;
/**
* Class UpdatePageRequest.
*/
class CollectionRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;//return access()->allow('edit-page');
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => 'required|max:255',
'role_id' => 'required',
];
}
}

View file

@ -25,7 +25,7 @@ class PersonRequest extends Request
return [
'academic_title' => 'nullable|min:2|max:255',
'last_name' => 'required|min:3|max:255',
'first_name' => 'nullable|min:3|max:255',
'first_name' => 'required|min:3|max:255',
'email' => 'nullable|email|max:100',
'identifier_orcid' => 'nullable|min:19|max:50',
'status' => 'required|boolean'

View file

@ -25,8 +25,8 @@ class ProjectRequest extends Request
return [
'name' => 'required|min:3|max:255',
'label' => 'required|min:3|max:10'
'label' => 'required|min:3|max:10',
'description' => 'required'
];
}
}