- Form Request array syntax: Convert pipe (|) delimited validation rules from strings into an array of validation rules while using Laravel Rule objects where available
- Streamline order methods: Streamline query builder orderBy calls with asc and desc arguments. - delete some old Request-Clases
This commit is contained in:
parent
6156bdf0c6
commit
50ceeb193b
18 changed files with 143 additions and 128 deletions
|
@ -24,15 +24,40 @@ class LicenseRequest extends Request
|
|||
public function rules()
|
||||
{
|
||||
return [
|
||||
'desc_text' => 'max:4000',
|
||||
'language' => 'max:3',
|
||||
'link_licence' => 'required|url:max:255',
|
||||
'link_logo' => 'url|max:255',
|
||||
'mime_type' => 'max:30',
|
||||
'name_long' => 'required|min:5|max:255',
|
||||
'sort_order' => 'required|integer',
|
||||
'active' => 'required|boolean',
|
||||
'pod_allowed' => 'required|boolean'
|
||||
'desc_text' => [
|
||||
'max:4000',
|
||||
],
|
||||
'language' => [
|
||||
'max:3',
|
||||
],
|
||||
'link_licence' => [
|
||||
'required',
|
||||
'url:max:255',
|
||||
],
|
||||
'link_logo' => [
|
||||
'url',
|
||||
'max:255',
|
||||
],
|
||||
'mime_type' => [
|
||||
'max:30',
|
||||
],
|
||||
'name_long' => [
|
||||
'required',
|
||||
'min:5',
|
||||
'max:255',
|
||||
],
|
||||
'sort_order' => [
|
||||
'required',
|
||||
'integer',
|
||||
],
|
||||
'active' => [
|
||||
'required',
|
||||
'boolean',
|
||||
],
|
||||
'pod_allowed' => [
|
||||
'required',
|
||||
'boolean',
|
||||
],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue